/* Variáveis CSS */
:root {
    --primary-color: #A3503F;
    --secondary-color: #00A651;
    --text-color: #4B221A;
    --light-bg: #F8F9FA;
    --bg-light: #FFFFFF;
    --hover-green: #008c44;
    --bg-warm: #F9F5F3;
    /* Marquee */
    --marquee-duration: 14s;
    --marquee-gap: 56px;
    
    /* Font Weights */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
}

/* Prefixos para compatibilidade entre navegadores */
@-webkit-keyframes marqueeSlide {
    0% { -webkit-transform: translateX(0); transform: translateX(0); }
    100% { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}

@keyframes marqueeSlide {
    0% { 
        -webkit-transform: translateX(0); 
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0); 
    }
    100% { 
        -webkit-transform: translateX(-50%); 
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%); 
    }
}

/* Estilos Gerais */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}



/* Menu Hambúrguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.menu-toggle:hover {
    background: rgba(163, 80, 63, 0.1);
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Menu Móvel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-logo .logo-img {
    height: 32px;
}

.mobile-logo .logo-text {
    font-size: 18px;
    font-weight: var(--font-semibold);
    color: var(--primary-color);
}

.menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-close:hover {
    background: #e9ecef;
    color: var(--primary-color);
}

.mobile-nav {
    flex: 1;
    padding: 20px 0;
}

.mobile-nav-link {
    display: block;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary-color);
    background: rgba(163, 80, 63, 0.05);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-contact {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

.mobile-whatsapp-btn {
    background: var(--secondary-color);
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: var(--font-semibold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
    width: 100%;
    font-size: 16px;
    line-height: 1.2;
}

.mobile-whatsapp-btn:hover {
    background: var(--hover-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 166, 81, 0.4);
    color: white;
}

.mobile-whatsapp-btn i {
    font-size: 1.2rem;
}

/* ===== HEADER STYLES ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    background: var(--primary-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.whatsapp-btn {
    background: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: var(--font-semibold);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
    line-height: 1.2;
}

.whatsapp-btn:hover {
    background: var(--hover-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 166, 81, 0.4);
    color: white;
}

.whatsapp-btn i {
    font-size: 1.2rem;
}





/* Main Content */
main {
    padding-top: 70px;
}

/* Header Responsive Styles */
@media (max-width: 991.98px) {
    .nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .header-content {
        padding: 0 1.5rem;
    }
    
    .whatsapp-btn span {
        display: none;
    }
    
    .whatsapp-btn {
        padding: 0.7rem;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .nav {
        display: none;
    }
    
    .header-content {
        padding: 0 1rem;
        height: 60px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .whatsapp-btn {
        width: 44px;
        height: 44px;
        padding: 0.65rem;
    }
    
    .whatsapp-btn i {
        font-size: 1.05rem;
    }
    
    main {
        padding-top: 60px;
    }
}

@media (max-width: 575.98px) {
    .nav {
        display: none;
    }
    
    .header-content {
        padding: 0 0.75rem;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .header-right {
        gap: 0.5rem;
    }
}

@media (max-width: 374.98px) {
    .nav {
        display: none;
    }
    

    
    .header-content {
        padding: 0 0.5rem;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .whatsapp-btn {
        width: 38px;
        height: 38px;
    }
    

}



/* Hero Section */
.hero-section {
    height: 800px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(249, 245, 243, 0.85) 0%, rgba(245, 243, 240, 0.85) 100%), url('../images/hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding-right: 2rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-badge {
    display: inline-block;
    background: rgba(163, 80, 63, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: var(--font-medium);
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
    border: 1px solid rgba(163, 80, 63, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: var(--font-bold);
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: white !important;
    padding: 18px 36px;
    font-weight: var(--font-semibold);
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
}

.hero-btn-primary:hover {
    background: var(--hover-green) !important;
    border-color: var(--hover-green) !important;
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 166, 81, 0.5) !important;
    color: white !important;
    -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-btn-secondary {
    background: transparent !important;
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    padding: 18px 36px;
    font-weight: var(--font-semibold);
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px !important;
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(163, 80, 63, 0.5);
    -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-image {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Responsive Design */

/* Ajuste do container */
@media (min-width: 992px) {
    .container {
        position: relative;
        max-width: 1280px;
        padding: 0 40px;
        margin: 0 auto;
    }
}

/* Responsividade Bootstrap */

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .hero-content {
        padding-right: 3rem;
    }
    
    /* Remove o gradiente da imagem hero no desktop */
    .hero-section {
        background: url('../images/hero-image.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 991.98px) {
    .container {
        padding: 0 24px;
    }
    
    /* Header Responsivo */
    .header-container {
        padding: 0 24px;
    }
    
    /* Hero Tablet */
    .hero-section {
        height: 700px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)), url('../images/hero-mobile.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image {
        display: none; /* Hide hero-image div at tablet breakpoint */
    }
    
    .nav {
        display: none;
    }
    

    
    .whatsapp-btn span {
        display: none;
    }
    
    .whatsapp-btn {
        padding: 0.6rem;
        min-width: auto;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 767.98px) {
    .container {
        padding: 0 20px;
    }
    
    /* Hero Mobile */
    .hero-section {
        height: 600px;
        padding: 40px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)), url('../images/hero-mobile.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .hero-content {
        text-shadow: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .container {
        padding: 0 16px;
    }
    
    /* Hero Extra Small */
    .hero-section {
        height: 500px;
        padding: 30px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)), url('../images/hero-mobile.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .hero-content {
        text-shadow: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .hero-image {
        display: none;
    }
}

/* Extra extra small devices (very small phones, less than 375px) */
@media (max-width: 374.98px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* Utilitários */
.section-padding {
    padding: 80px 0;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}



/* Floating WhatsApp Button */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 166, 81, 0.7), 0 0 40px rgba(0, 166, 81, 0.4);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
        transform: scale(1);
    }
}

@keyframes icon-glow {
    0% {
        text-shadow: 0 0 0 transparent;
        opacity: 0.9;
    }
    50% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
        opacity: 1;
    }
    100% {
        text-shadow: 0 0 0 transparent;
        opacity: 0.9;
    }
}

.whatsapp-float {
    position: fixed;
    width: 64px;
    height: 64px;
    bottom: 40px;
    right: 40px;
    background-color: var(--secondary-color);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-glow 2s infinite ease-in-out;
}

.whatsapp-float i {
    animation: icon-glow 2s infinite ease-in-out;
}

.whatsapp-float:hover {
    background-color: var(--hover-green);
    color: #FFF;
    animation: none; /* Pausa a animação no hover */
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 166, 81, 0.7), 0 0 25px rgba(0, 166, 81, 0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover i {
    animation: none; /* Pausa a animação do ícone no hover */
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
}

@media (max-width: 767px) {
    .whatsapp-float {
        width: 58px;
        height: 58px;
        bottom: 25px;
        right: 25px;
        font-size: 30px;
    }
    
    @keyframes pulse-glow {
        50% {
            box-shadow: 0 0 20px rgba(0, 166, 81, 0.7), 0 0 30px rgba(0, 166, 81, 0.4);
            transform: scale(1.04);
        }
    }
}

@media (max-width: 374.98px) {
    .nav {
        display: none;
    }
    
    .whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
    
    @keyframes pulse-glow {
        50% {
            box-shadow: 0 0 15px rgba(0, 166, 81, 0.7), 0 0 25px rgba(0, 166, 81, 0.4);
            transform: scale(1.03);
        }
    }
    
    @keyframes icon-glow {
        50% {
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
        }
    }
}

/* Breakpoint específico para iPhone SE e dispositivos menores */
@media (max-width: 320px) {
    .nav {
        display: none !important;
    }
    

}

/* Badge Marquee (new implementation) */
.badge-marquee {
    background: linear-gradient(90deg, #a3503f 0%, #b85e4d 50%, #a3503f 100%);
    color: #fff;
    overflow: hidden;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: relative;
}

.badge-marquee::before,
.badge-marquee::after { content: none; }


.badge-marquee .marquee-viewport {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.badge-marquee .marquee-viewport::before,
.badge-marquee .marquee-viewport::after {
    content: '';
    position: absolute;
    top: 0;
    width: 48px;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}
.badge-marquee .marquee-viewport::before { left: 0; background: linear-gradient(90deg, rgba(163,80,63,1) 0%, rgba(163,80,63,0) 100%); }
.badge-marquee .marquee-viewport::after { right: 0; background: linear-gradient(270deg, rgba(163,80,63,1) 0%, rgba(163,80,63,0) 100%); }
.badge-marquee .marquee-viewport { padding: 0; }
@media (max-width: 991.98px) { .badge-marquee .marquee-viewport { padding: 0; } }
@media (max-width: 767.98px) { .badge-marquee .marquee-viewport { padding: 0; } }

.badge-marquee .marquee-track {
    display: inline-flex;
    align-items: center;
    gap: var(--marquee-gap);
    padding: 8px 0;
    white-space: nowrap;
    width: max-content;
    animation: marqueeSlide var(--marquee-duration) linear infinite;
    will-change: transform;
}

.badge-marquee .marquee-group {
    display: inline-flex;
    align-items: center;
    gap: 24px;
}

.badge-marquee .marquee-group:nth-child(2) { gap: 24px; }

.badge-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    font-weight: var(--font-medium);
    font-size: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.badge-chip i {
    font-size: 16px;
}

.badge-chip:hover,
.badge-chip:focus-visible {
    transform: translateY(-1px) scale(1.02);
    background: rgba(255,255,255,0.18);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    outline: 0;
}

@keyframes marqueeSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 991.98px) {
    :root { --marquee-duration: 12s; --marquee-gap: 40px; }
    .badge-marquee .marquee-track { padding: 7px 20px; }
    .badge-marquee .marquee-group { gap: 20px; }
    .badge-chip { padding: 5px 10px; font-size: 14px; }
}

@media (max-width: 767.98px) {
    :root { --marquee-duration: 10s; --marquee-gap: 28px; }
    .badge-marquee .marquee-track { padding: 6px 16px; }
    .badge-marquee .marquee-group { gap: 16px; }
    .badge-chip { padding: 4px 9px; font-size: 13px; border-radius: 8px; }
}

@media (prefers-reduced-motion: reduce) {
    .badge-marquee .marquee-track { animation: none; }
}

/* removed pause on hover */

/* About Section */
.about-section {
    position: relative;
    width: 100%;
    background-image: url('../images/journey-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    background-color: var(--bg-warm);
}

/* Specialties Section */
.apple-specialties {
    padding: 100px 0;
    background: url('../images/especialidades.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.apple-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.apple-title {
    font-size: 48px;
    font-weight: var(--font-semibold);
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.apple-subtitle {
    font-size: 20px;
    font-weight: var(--font-regular);
    color: #351813;
    margin: 0;
    line-height: 1.5;
    letter-spacing: 0;
}

.apple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.apple-card {
    background: white;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.apple-card:hover {
    -webkit-transform: translateY(-10px) scale(1.02);
    -moz-transform: translateY(-10px) scale(1.02);
    -ms-transform: translateY(-10px) scale(1.02);
    -o-transform: translateY(-10px) scale(1.02);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(163, 80, 63, 0.2);
    border-color: var(--primary-color);
    -webkit-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.apple-card-content {
    padding: 30px 25px;
    text-align: center;
}

.apple-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 15px rgba(163, 80, 63, 0.3);
}

.apple-card-title {
    font-size: 22px;
    font-weight: var(--font-semibold);
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.apple-card-desc {
    font-size: 16px;
    font-weight: var(--font-regular);
    color: #351813;
    line-height: 1.5;
    margin: 0;
}

.apple-cta {
    text-align: center;
    margin-top: 60px;
}

.apple-btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: var(--font-medium);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(163, 80, 63, 0.3);
    border: none;
    cursor: pointer;
}

.apple-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(163, 80, 63, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .apple-title {
        font-size: 42px;
    }
    
    .apple-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 991.98px) {
    .apple-specialties {
        padding: 80px 0;
    }
    
    .apple-header {
        margin-bottom: 50px;
    }
    
    .apple-title {
        font-size: 36px;
    }
    
    .apple-subtitle {
        font-size: 18px;
    }
    
    .apple-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 767.98px) {
    .apple-specialties {
        padding: 60px 0;
    }
    
    .apple-header {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .apple-title {
        font-size: 30px;
    }
    
    .apple-subtitle {
        font-size: 16px;
    }
    
    .apple-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .apple-card-content {
        padding: 25px 20px;
    }
    
    .apple-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .apple-card-title {
        font-size: 20px;
    }
    
    .apple-card-desc {
        font-size: 15px;
    }
    
    .apple-cta {
        margin-top: 40px;
    }
    
    .apple-btn {
        padding: 12px 25px;
        font-size: 15px;
    }
}





.about-section {
    position: relative;
    padding: 80px 0;
    background-image: url('../images/journey-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    background-color: var(--bg-warm);
    height: 746px;
}



.about-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
}

.about-col-text { flex: 1; max-width: 640px; }
.about-col-media { display: none; }

.about-badge {
    display: inline-block;
    background-color: rgba(163, 80, 63, 0.1);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: var(--font-medium);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
    border: 1px solid rgba(163, 80, 63, 0.2);
}

.about-credentials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: var(--font-medium);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.about-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.about-link:hover {
    color: var(--primary-color);
}

.about-link:hover::after {
    width: 100%;
}

.about-link:hover i {
    transform: translateX(4px);
}

.about-link i {
    transition: transform 0.3s ease;
}

.section-title {
    color: var(--primary-color);
    font-size: 40px;
    line-height: 1.2;
    font-weight: var(--font-medium);
    letter-spacing: .2px;
    margin-bottom: 16px;
}
.section-subtitle { color: #351813; opacity: .9; margin-bottom: 32px; font-size: 18px; line-height: 1.6; }

.about-text {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about-description {
    font-size: 18px;
    color: #351813;
    line-height: 1.8;
    margin-bottom: 0;
    letter-spacing: 0.2px;
}

.about-description strong {
    color: var(--primary-color);
    font-weight: var(--font-medium);
}

.about-description:last-child {
    margin-bottom: 0;
}

.crp-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 12px 24px;
    border-radius: 100px;
    display: inline-flex;
}

.crp-wrapper i {
    color: var(--primary-color);
    font-size: 20px;
}

.crp-text {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: var(--font-medium);
}

@media (max-width: 1399.98px) {
    .about-container {
        max-width: 1140px;
        padding: 60px 40px;
    }
}

@media (max-width: 1199.98px) {
    .about-container {
        max-width: 960px;
        padding: 50px 40px;
    }
}

@media (max-width: 991.98px) {
    .about-container {
        max-width: 720px;
        padding: 40px 24px;
        align-items: flex-start;
        min-height: auto;
    }
    .about-content { max-width: 100%; }
    .about-description { font-size: 16px; }
    .about-text { gap: 24px; }
    .section-title { font-size: 36px; }
    .about-credentials { margin-top: 24px; }
    .about-section { 
        background-image: none; 
        height: auto;
        padding: 60px 0;
        background-color: #FAE1B6;
    }
    .about-col-text { 
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .about-section { background-image: none; padding: 50px 0; background-color: #FAE1B6; }
    .about-container {
        max-width: 540px;
        padding: 32px 16px;
        flex-direction: column;
        text-align: center;
    }
    .about-inner {
        flex-direction: column;
        text-align: center;
    }
    .about-text { gap: 20px; }
    .about-description { line-height: 1.7; }
    .crp-wrapper { flex-wrap: wrap; justify-content: center; }
    .section-title { font-size: 32px; }
    .section-subtitle { font-size: 16px; }
    .about-credentials {
        justify-content: center;
        margin-top: 20px;
    }
    .about-badge {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575.98px) {
    .about-container { max-width: 100%; padding: 28px 16px; }
    .about-description { font-size: 15px; line-height: 1.7; }
    .about-text { gap: 16px; }
    .section-title { font-size: 28px; margin-bottom: 8px; }
    .section-subtitle { margin-bottom: 20px; font-size: 15px; }
    .about-badge { font-size: 12px; padding: 4px 12px; }
    .about-credentials { flex-direction: column; gap: 16px; margin-top: 16px; }
    .about-section { background-color: #FAE1B6; }
}

/* Courses Section */
.courses-section {
    background: url('../images/especialidades.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
    min-height: 100vh;
}

/* Removido o overlay para ter 100% de opacidade */

.courses-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.courses-title {
    font-size: 48px;
    font-weight: var(--font-semibold);
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

.courses-subtitle {
    font-size: 20px;
    font-weight: var(--font-regular);
    color: #351813;
    margin: 0;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.7);
}

.courses-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 500px;
    position: relative;
}

.course-item {
    flex: 1;
    max-width: 450px;
    background: white;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.course-item:hover {
    -webkit-transform: translateY(-10px) scale(1.02);
    -moz-transform: translateY(-10px) scale(1.02);
    -ms-transform: translateY(-10px) scale(1.02);
    -o-transform: translateY(-10px) scale(1.02);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(163, 80, 63, 0.2);
    border-color: var(--primary-color);
    -webkit-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.course-image {
        position: relative;
        height: 200px;
        overflow: hidden;
    }
    
    @media (max-width: 767.98px) {
        .course-image {
            height: 180px;
        }
    }
    
    @media (max-width: 575.98px) {
        .course-image {
            height: 160px;
        }
    }

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
    transition: transform 0.3s ease;
}

.course-item:hover .course-image img {
    transform: scale(1.05);
}

.course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(163, 80, 63, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.course-item:hover .course-overlay {
    opacity: 1;
}

.course-icon {
    color: white;
    font-size: 3rem;
    transition: transform 0.3s ease;
}

.course-item:hover .course-icon {
    transform: scale(1.1);
}

.course-content {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.course-title {
    font-size: 24px;
    font-weight: var(--font-semibold);
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.course-description {
    font-size: 16px;
    font-weight: var(--font-regular);
    color: #351813;
    line-height: 1.6;
    margin-bottom: 25px;
}

.course-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.course-duration,
.course-level {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: var(--font-medium);
    color: #351813;
}

.course-duration i,
.course-level i {
    font-size: 16px;
    color: var(--primary-color);
}

.course-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: var(--font-semibold);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(163, 80, 63, 0.3);
    border: none;
    cursor: pointer;
    align-self: flex-start;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 1;
}

.course-btn:hover {
    background: #8a3e30;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(163, 80, 63, 0.5);
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.course-btn i {
    transition: transform 0.3s ease;
}

.course-btn:hover i {
    transform: translateX(4px);
}

.courses-cta-container {
    text-align: center;
    margin-top: 50px;
    position: relative;
}

.courses-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: var(--font-semibold);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
}

.courses-cta:hover {
    background: var(--hover-green);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 166, 81, 0.5);
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Responsividade */
@media (max-width: 1200px) {
    .courses-container {
        gap: 30px;
        padding: 0 30px;
    }
}

@media (max-width: 991.98px) {
    .courses-section {
        padding: 60px 0;
    }
    
    .courses-title {
        font-size: 36px;
    }
    
    .courses-subtitle {
        font-size: 18px;
    }
    
    .courses-container {
        gap: 25px;
        padding: 0 20px;
    }
    
    .course-content {
        padding: 30px 25px;
    }
    
    .course-title {
        font-size: 22px;
    }
    
    .course-description {
        font-size: 15px;
    }
}

@media (max-width: 767.98px) {
    .courses-section {
        padding: 50px 0;
        background-attachment: scroll;
        min-height: auto;
    }
    
    .courses-header {
        margin-bottom: 40px;
    }
    
    .courses-title {
        font-size: 32px;
    }
    
    .courses-subtitle {
        font-size: 16px;
    }
    
    .courses-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .course-item {
        max-width: 100%;
        width: 100%;
    }
    
    .course-content {
        padding: 25px 20px;
    }
    
    .course-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .course-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .course-meta {
        gap: 15px;
    }
    
    .course-btn {
        padding: 12px 24px;
        font-size: 15px;
        align-self: center;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .courses-cta {
        padding: 14px 28px;
        font-size: 16px;
    }
}

@media (max-width: 374.98px) {
    .about-section { background-color: #FAE1B6; }
    
    .course-content {
        padding: 18px 15px;
    }
    
    .course-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .course-description {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .course-meta {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .course-btn {
        padding: 10px 20px;
        font-size: 14px;
        max-width: 250px;
    }
    
    .courses-cta {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    /* Header Mobile */
    .header {
        background: rgba(255, 255, 255, 0.98);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .header-content {
        padding: 0 1.5rem;
        height: 60px;
    }
    
    .logo {
        flex: 1;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .nav {
        display: none;
    }
    
    .whatsapp-btn {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        width: 100%;
        max-width: 300px;
    }
    

    }
    
    main {
        padding-top: 60px;
    }
    

}

/* Padronização global de botões */
.btn {
    border-radius: 50px !important;
    font-weight: var(--font-semibold) !important;
    transition: all 0.3s ease !important;
}

.btn-success,
.btn-outline-primary,
.btn-primary {
    border-radius: 50px !important;
    padding: 12px 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.btn-primary {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3) !important;
}

.btn-primary:hover {
    background-color: var(--hover-green) !important;
    border-color: var(--hover-green) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(0, 166, 81, 0.4) !important;
}

/* Footer Styles */
.footer {
    background: #A3503F;
    color: white;
    padding: 60px 0 20px;
    position: relative;
}



.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

/* Seção Principal */
.footer-main {
    text-align: left;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.brand-name {
    font-size: 24px;
    font-weight: var(--font-semibold);
    color: white;
    margin: 0;
    letter-spacing: -0.5px;
}

.footer-description {
    font-size: 16px;
    font-weight: var(--font-regular);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 280px;
    text-align: left;
}

.footer-credentials {
    margin-top: 20px;
}

.crp-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 14px;
    font-weight: var(--font-medium);
    color: white;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* Seções do Footer */
.footer-section {
    text-align: left;
}

.footer-title {
    font-size: 18px;
    font-weight: var(--font-semibold);
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
    text-align: left;
}

/* Navegação */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: var(--font-regular);
    transition: all 0.3s ease;
    text-align: left;
    display: block;
}

.footer-nav a:hover {
    color: white;
    transform: translateX(4px);
}

/* Contato */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    text-align: left;
}

.contact-item i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: white;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.8);
}

/* Redes Sociais */
.footer-social {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    margin-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    text-align: left;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: var(--font-regular);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: var(--font-regular);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.designer-credit {
    color: #b8860b;
    font-size: 13px;
    font-weight: 500;
    font-style: italic;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.designer-credit:hover {
    opacity: 1;
}

/* Footer Responsividade */
@media (max-width: 991.98px) {
    .footer {
        padding: 50px 0 20px;
        margin-top: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }
    
    .footer-main {
        grid-column: 1 / -1;
        margin-bottom: 20px;
    }
    
    .footer-description {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .footer {
        padding: 40px 0 20px;
        margin-top: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 24px;
    }
    
    .footer-main,
    .footer-section {
        text-align: center !important;
    }
    
    .footer-title {
        text-align: center !important;
    }
    
    .footer-description {
        text-align: center !important;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-nav {
        justify-content: center;
        text-align: center;
        align-items: center;
    }
    
    .footer-nav a {
        text-align: center !important;
    }
    
    .footer-contact {
        align-items: center;
        text-align: center;
    }
    
    .contact-item {
        text-align: center !important;
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .footer {
        padding: 32px 0 16px;
        margin-top: 40px;
    }
    
    .footer-content {
        gap: 24px;
        margin-bottom: 20px;
    }
    
    .brand-name {
        font-size: 20px;
    }
    
    .footer-description {
        font-size: 15px;
        line-height: 1.5;
        text-align: center !important;
    }
    
    .footer-title {
        font-size: 16px;
        margin-bottom: 16px;
        text-align: center !important;
    }
    
    .footer-nav {
        gap: 10px;
        justify-content: center;
        text-align: center;
        align-items: center;
    }
    
    .footer-nav a {
        text-align: center !important;
    }
    
    .footer-contact {
        gap: 12px;
        margin-bottom: 20px;
        align-items: center;
        text-align: center;
    }
    
    .contact-item {
        font-size: 14px;
        gap: 10px;
        justify-content: center;
    }
    
    .contact-item i {
        font-size: 16px;
        width: 18px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .footer-bottom {
        padding: 16px 0;
    }
    
    .footer-bottom p,
    .footer-links a {
        font-size: 13px;
    }
    
    .designer-credit {
        font-size: 12px;
    }
    
    .footer-links {
        gap: 16px;
        flex-wrap: wrap;
    }
}

@media (max-width: 374.98px) {
    .footer {
        padding: 28px 0 14px;
        margin-top: 32px;
    }
    
    .footer-content {
        gap: 20px;
        margin-bottom: 16px;
    }
    
    .brand-name {
        font-size: 18px;
    }
    
    .footer-description {
        font-size: 14px;
        text-align: center !important;
    }
    
    .footer-title {
        font-size: 15px;
        margin-bottom: 14px;
        text-align: center !important;
    }
    
    .footer-nav {
        justify-content: center;
        text-align: center;
        align-items: center;
    }
    
    .footer-nav a {
        font-size: 14px;
        text-align: center !important;
    }
    
    .footer-contact {
        align-items: center;
        text-align: center;
    }
    
    .contact-item {
        font-size: 13px;
        gap: 8px;
        justify-content: center;
    }
    
    .contact-item i {
        font-size: 15px;
        width: 16px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .footer-bottom p,
    .footer-links a {
        font-size: 12px;
    }
    
    .designer-credit {
        font-size: 11px;
    }
    
    .footer-links {
        gap: 12px;
    }
}