/*-- Use For Custom Styling --*/

/* Estilos base del logo */
.logo-img {
    max-width: 200px;
    width: auto;
    height: auto;
    transition: all 0.3s ease;
}

/* Corrección del logo en móviles */
@media (max-width: 767px) {
    .logo-img {
        max-width: 200px !important;
        width: auto !important;
        height: auto !important;
        padding-left: 10px;
    }
}

@media (max-width: 576px) {
    .logo-img {
        max-width: 150px !important;
        width: auto !important;
        height: auto !important;
        padding-left: 5px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        max-width: 120px !important;
        width: auto !important;
        height: auto !important;
        padding-left: 5px;
    }
}

/* Asegurar que el navbar tenga suficiente espacio */
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.navbar-brand {
    flex-shrink: 0;
    max-width: 200px;
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    max-height: 60px;
    object-fit: contain;
}

/* Ajustes específicos para desktop */
@media (min-width: 768px) {
    .navbar-brand {
        max-width: 180px;
        margin-right: 30px;
    }
    
    .navbar .navbar-nav {
        margin-left: auto !important;
    }
}

/* Ajustes para pantallas grandes */
@media (min-width: 1200px) {
    .navbar-brand {
        max-width: 160px;
    }
}

/* Ajustes para pantallas extra grandes */
@media (min-width: 1400px) {
    .navbar-brand {
        max-width: 180px;
    }
}

/* Ajustar el botón del menú lateral en móviles */
@media (max-width: 767px) {
    .sidemenu_btn {
        margin-left: 10px;
        margin-right: 10px;
    }
}

/* ===================================
    Estilos del Formulario de Contacto
====================================== */

.contact-form-container {
    background: linear-gradient(135deg, #f9e2e2 0%, #fff 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(219, 98, 96, 0.1);
    border: 1px solid rgba(219, 98, 96, 0.1);
    height: 100%;
}

.form-title {
    color: #db6260;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.form-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.contact-form .form-control:focus {
    border-color: #db6260;
    box-shadow: 0 0 0 0.2rem rgba(219, 98, 96, 0.25);
    background: #fff;
}

.contact-form .form-control::placeholder {
    color: #999;
    font-weight: 400;
}

.contact-form textarea.form-control {
    resize: none;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form .btn i {
    margin-right: 8px;
    font-size: 18px;
}

/* ===================================
    Estilos de las Sucursales
====================================== */

.branches-container {
    background: linear-gradient(135deg, #fff 0%, #f9e2e2 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(219, 98, 96, 0.1);
    border: 1px solid rgba(219, 98, 96, 0.1);
    height: 100%;
}

.branches-title {
    color: #db6260;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.branches-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.branches-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.branch-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(219, 98, 96, 0.1);
    backdrop-filter: blur(10px);
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(219, 98, 96, 0.15);
    border-color: #db6260;
}

.branch-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #db6260, #fbaaa9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(219, 98, 96, 0.3);
}

.branch-icon i {
    color: #fff;
    font-size: 24px;
}

.branch-content {
    flex: 1;
}

.branch-name {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.branch-phone {
    margin-bottom: 5px;
}

.branch-phone a {
    color: #25d366;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.branch-phone a:hover {
    color: #128c7e;
    transform: scale(1.05);
}

.branch-phone i {
    font-size: 18px;
}

.branch-address {
    color: #666;
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.branch-address i {
    color: #db6260;
    font-size: 16px;
}

/* ===================================
    Media Queries para Contacto
====================================== */

@media (max-width: 992px) {
    .contact-form-container,
    .branches-container {
        margin-bottom: 30px;
        padding: 30px;
    }
    
    .form-title,
    .branches-title {
        font-size: 24px;
    }
    
    .branch-card {
        padding: 20px;
    }
    
    .branch-icon {
        width: 50px;
        height: 50px;
    }
    
    .branch-icon i {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .contact-form-container,
    .branches-container {
        padding: 25px;
    }
    
    .form-title,
    .branches-title {
        font-size: 22px;
    }
    
    .branch-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .branch-icon {
        width: 60px;
        height: 60px;
    }
    
    .branch-icon i {
        font-size: 24px;
    }
}

/* ===================================
    Footer Minimalista Moderno
====================================== */

.minimalist-footer {
    background: #f8f9fa;
    color: #333;
    border-top: 1px solid #e9ecef;
}

.footer-content {
    padding: 60px 0 30px;
}

/* Logo y Brand */
.footer-brand {
    text-align: left;
    margin-bottom: 30px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-img {
    max-width: 100px;
    height: auto;
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.05);
}

.footer-title {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.footer-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-tagline {
    color: #db6260;
    font-weight: 500;
    font-size: 14px;
    font-style: italic;
}

/* Secciones del Footer */
.footer-section {
    margin-bottom: 30px;
}

.section-title {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 2px solid #db6260;
    padding-bottom: 8px;
    display: inline-block;
}

/* Enlaces */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
    display: inline-block;
}

.footer-links a:hover {
    color: #db6260;
    transform: translateX(5px);
}

/* Servicios */
.footer-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services li {
    color: #666;
    margin-bottom: 10px;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.footer-services li:hover {
    color: #db6260;
    transform: translateX(5px);
}

/* Contacto */
.footer-contact {
    margin-bottom: 25px;
}

.contact-item {
    margin-bottom: 12px;
    color: #666;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: #db6260;
    transform: translateX(5px);
}

/* Redes Sociales */
.social-media-section {
    margin-top: 20px;
}

.social-title {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.social-icons-minimal {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.social-icon:hover {
    background: #db6260;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(219, 98, 96, 0.3);
}

.social-icon i {
    font-size: 16px;
}

/* Divisor */
.footer-divider {
    margin: 30px 0;
}

.divider-line {
    height: 1px;
    background: #e9ecef;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 20px;
}

.copyright-text {
    color: #666;
    font-size: 13px;
    margin: 0;
    text-align: center;
}

.footer-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: #fff;
    color: #666;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.badge:hover {
    background: #db6260;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(219, 98, 96, 0.3);
}

/* ===================================
    Banner Features
====================================== */

.banner-features {
    display: flex;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(219, 98, 96, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(219, 98, 96, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(219, 98, 96, 0.2);
    transform: translateY(-2px);
}

.feature-item i {
    color: #db6260;
    font-size: 14px;
}

.feature-item span {
    color: #333;
    font-size: 13px;
    font-weight: 500;
}

/* ===================================
    About Stats
====================================== */

.about-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #db6260;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* ===================================
    Gallery Description
====================================== */

.gallery-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
    Testimonial Improvements
====================================== */

.testimonial-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-location {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin-top: 5px;
    font-style: italic;
}

/* ===================================
    Contact Description
====================================== */

.contact-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
    Media Queries para Footer Minimalista
====================================== */

@media (max-width: 992px) {
    .footer-content {
        padding: 50px 0 25px;
    }
    
    .footer-title {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 16px;
    }
    
    .social-icons-minimal {
        justify-content: center;
    }
    
    .footer-badges {
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .footer-content {
        padding: 40px 0 20px;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .footer-title {
        font-size: 20px;
    }
    
    .footer-description {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 15px;
        text-align: center;
        border-bottom: 2px solid #db6260;
        padding-bottom: 6px;
    }
    
    .footer-links,
    .footer-services,
    .footer-contact {
        text-align: center;
    }
    
    .social-icons-minimal {
        justify-content: center;
    }
    
    .copyright-text {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .badge {
        font-size: 10px;
        padding: 4px 10px;
    }
    
    /* Banner Features Mobile */
    .banner-features {
        justify-content: center;
        gap: 15px;
    }
    
    .feature-item {
        padding: 6px 12px;
    }
    
    .feature-item span {
        font-size: 12px;
    }
    
    /* About Stats Mobile */
    .about-stats {
        gap: 20px;
        justify-content: center;
    }
    
    .stat-item {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    /* Gallery Description Mobile */
    .gallery-description {
        font-size: 14px;
        padding: 0 20px;
    }
    
    /* Testimonial Mobile */
    .testimonial-subtitle {
        font-size: 14px;
        padding: 0 20px;
    }
    
    /* Contact Description Mobile */
    .contact-description {
        font-size: 14px;
        padding: 0 20px;
    }
}