/* CSS Design System for SITEPOMBO */

:root {
    --bg-dark: #000000;
    --bg-card: #0c150c;
    --primary-green: #358334;
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
    --font-headers: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    font-family: var(--font-body);
    color: var(--text-white);
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    line-height: 1.6;
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------------------------------------------- */
/* SECTION 1: HERO                                      */
/* ---------------------------------------------------- */
#hero {
    position: relative;
    min-height: 100vh;
    padding: 3rem 10% 0 10%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: url('assets/fundo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 10;
}

.hero-star {
    max-height: 48px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
    animation: pulse 4s infinite ease-in-out;
    position: fixed;
    top: -100px;
    left: -100px;
    pointer-events: none;
    z-index: 9999;
    transition: top 0.15s ease-out, left 0.15s ease-out;
}

.hero-header-right {
    display: grid;
    grid-template-columns: auto auto;
    align-items: end;
    column-gap: 4rem;
    justify-content: end;
    margin-left: auto;
    font-family: var(--font-body);
    font-weight: 300;
    opacity: 0;
    animation: slideDownFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-year {
    grid-column: 1;
    grid-row: 2;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.hero-copy {
    grid-column: 2;
    grid-row: 2;
    font-size: 1.1rem;
    text-align: right;
}

.hero-tagline {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    line-height: 1.3;
    text-align: right;
    text-transform: lowercase;
    opacity: 0.9;
}

.hero-middle {
    margin-top: 18vh;
    max-width: 45ch;
    z-index: 10;
}

.hero-intro-text {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--text-white);
    opacity: 0;
    animation: slideDownFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

.hero-bottom {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
    z-index: 5;
}

.hero-main-title {
    position: relative;
    font-family: var(--font-headers);
    font-size: clamp(8rem, 22vw, 24rem);
    font-weight: 900;
    line-height: 0.75;
    letter-spacing: -2px;
    margin: 0 0 5vw 0;
    padding: 0;
    color: var(--text-white);
    user-select: none;
    z-index: 5;
    opacity: 0;
    animation: slideDownFadeInMain 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
}

.hero-main-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 400%;
    background-image: url('assets/brilho_pombo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: screen;
    -webkit-mask-image: radial-gradient(closest-side, black 60%, transparent 95%);
    mask-image: radial-gradient(closest-side, black 60%, transparent 95%);
}

.waves-divider {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 10vw;
    min-height: 100px;
    background-image: url('assets/ondas_novas.png');
    background-size: 110% auto;
    background-repeat: no-repeat;
    background-position: left bottom;
    animation: moveWaves 12s ease-in-out infinite alternate;
    z-index: 3;
}

@keyframes moveWaves {
    0% { background-position: left bottom; }
    100% { background-position: right bottom; }
}

/* ---------------------------------------------------- */
/* SECTION 2: ABOUT                                     */
/* ---------------------------------------------------- */
#about {
    background-color: var(--bg-dark);
    background-image: url('assets/top_degrade.png'), url('assets/fundo_cara.jpeg');
    background-size: 100% auto, cover;
    background-position: top center, center;
    background-repeat: no-repeat, no-repeat;
    padding: 6rem 10% 0 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    gap: 8rem;
    position: relative;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 8rem;
    width: 100%;
}

.about-left {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.portrait-glow-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.portrait-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130%;
    height: 130%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(53, 131, 52, 0.45) 0%, rgba(0, 0, 0, 0) 65%);
    z-index: 1;
    pointer-events: none;
}

.about-portrait {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    z-index: 2;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
    transition: var(--transition-smooth);
}

.about-portrait:hover {
    transform: scale(1.02);
}

.about-starburst {
    position: absolute;
    top: -24px;
    left: -24px;
    width: 64px;
    height: 64px;
    z-index: 3;
    animation: rotate 20s infinite linear;
}

.about-right {
    flex: 1.2;
}

.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    max-width: 350px;
    margin-left: auto;
}

.about-p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-white);
    line-height: 1.4;
    font-weight: 500;
    text-align: justify;
    text-align-last: justify;
}

.about-p.highlight {
    font-size: 1.1rem;
    font-weight: 700;
}

.about-p.last {
    margin-top: 1rem;
}

/* ABOUT SECTION ANIMATIONS */
#about.scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

#about .about-text-content {
    opacity: 0;
    transform: translateX(8vw);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.1s;
}

#about.active .about-text-content {
    opacity: 1;
    transform: translateX(0);
}

#about .stat-item, #about .stat-divider {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

#about.active .stat-item, #about.active .stat-divider {
    opacity: 1;
    transform: translateY(0);
}

#about.active .stat-item:nth-child(1) { transition-delay: 0.9s; }
#about.active .stat-divider:nth-child(2) { transition-delay: 1.05s; }
#about.active .stat-item:nth-child(3) { transition-delay: 1.2s; }
#about.active .stat-divider:nth-child(4) { transition-delay: 1.35s; }
#about.active .stat-item:nth-child(5) { transition-delay: 1.5s; }

/* About Stats Footer */
.about-stats-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: var(--bg-card);
    border-top: 1px solid rgba(53, 131, 52, 0.3);
    border-bottom: 1px solid rgba(53, 131, 52, 0.3);
    padding: 3rem 2rem;
    border-radius: 16px;
    margin-top: 2rem;
    box-shadow: inset 0 0 20px rgba(53, 131, 52, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat-num {
    font-family: var(--font-headers);
    font-size: 5.5rem;
    color: var(--primary-green);
    line-height: 1;
    font-weight: normal;
    text-shadow: 0 0 15px rgba(53, 131, 52, 0.2);
}

.stat-text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.3;
}

.stat-divider {
    height: 60px;
    width: 1px;
    background-color: rgba(53, 131, 52, 0.3);
}

/* ---------------------------------------------------- */
/* SECTION 3: SERVICES                                  */
/* ---------------------------------------------------- */
#services {
    padding: 8rem 10%;
    background-image: url('assets/fundo_quemsomos.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.services-header-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 5rem;
}

.services-title {
    font-family: var(--font-headers);
    font-size: 5.5rem;
    font-weight: normal;
    line-height: 1;
    letter-spacing: 1px;
    white-space: nowrap;
}

.services-line {
    flex-grow: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

.services-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-white);
    text-align: justify;
    text-align-last: justify;
    line-height: 1.2;
    width: 180px;
}

.services-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.service-row {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-row.scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

.service-icon-box {
    width: 110px;
    height: 110px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.service-row.scroll-reveal .service-icon-box {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-row.scroll-reveal.active .service-icon-box {
    opacity: 1;
    transform: scale(1);
}

.service-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.service-details-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-size: 100% 100%;
    background-position: left center;
    background-repeat: no-repeat;
    flex-grow: 1;
    height: 85px;
    padding: 0 3rem 0 3rem;
    margin-left: -15px; /* Overlap under the icon */
    position: relative;
    z-index: 1;
}

.service-row.scroll-reveal .service-details-bar {
    opacity: 0;
    transform: translateX(-100px);
    clip-path: inset(0 100% 0 0);
    transition: opacity 0.8s ease-out, transform 1s cubic-bezier(0.16, 1, 0.3, 1), clip-path 1s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.3s;
}

.service-row.scroll-reveal.active .service-details-bar {
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
}

.service-name {
    font-family: var(--font-headers);
    font-size: 2.5rem;
    letter-spacing: 0.5px;
    color: var(--text-white);
    margin: 0;
    padding-top: 0.5rem;
}

.service-description {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-white);
    text-align: justify;
    line-height: 1.3;
    font-weight: 600;
    margin: 0;
    width: 320px;
    flex-shrink: 0;
}

/* ---------------------------------------------------- */
/* SECTION 4: CLIENTS                                   */
/* ---------------------------------------------------- */
#clients {
    padding: 8rem 10%;
    background-image: url('assets/fundo_clientes.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    position: relative;
}

.clients-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.clients-quote {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-white);
    width: 200px;
    text-align: justify;
    text-align-last: justify;
}

.clients-title {
    font-family: var(--font-headers);
    font-size: 6rem;
    font-weight: normal;
    line-height: 0.9;
    color: var(--text-white);
    transform: translateY(12px); /* Puxando para colar na linha da base */
}

/* Override default scroll-reveal for this section */
#clients.scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    width: 100%;
}

.client-card {
    height: 120px;
    background-color: #1a3b19;
    border: none;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: var(--transition-smooth);
    box-shadow: none;
}

.client-logo {
    max-height: 52px;
    max-width: 80%;
    object-fit: contain;
    opacity: 0; /* Começa invisível para a animação */
    filter: none;
    transform: scale(1);
    transition: opacity 1.2s ease-in-out, transform 0.4s ease-out;
}

/* Revela todas as logos juntas quando a seção fica ativa */
#clients.active .client-logo {
    opacity: 1;
}

.client-card:hover .client-logo {
    transform: scale(1.04);
}

.zigzag-border {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 25px;
    background-image: url('assets/border.png');
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: center;
    z-index: 10;
}

.zigzag-border.top {
    top: 0;
}

.zigzag-border.bottom {
    bottom: 0;
}

/* ---------------------------------------------------- */
/* SECTION 5: CONTACT & FOOTER                          */
/* ---------------------------------------------------- */
#contact {
    padding: 8rem 10% 0 10%;
    background-image: url('assets/fundo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

.contact-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.contact-headline {
    display: flex;
    flex-direction: column;
}

.contact-huge-num {
    font-family: var(--font-headers);
    font-size: 8rem;
    line-height: 0.8;
    color: var(--text-white);
}

.contact-title {
    font-family: var(--font-headers);
    font-size: 4rem;
    line-height: 1;
    color: var(--text-white);
}

.contact-tagline {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 300;
    color: #ffffff;
    max-width: 25ch;
    text-align: right;
    line-height: 1.4;
    margin-top: 1rem;
}

.contact-body {
    margin-bottom: 8rem;
}

.contact-narrative {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: #ffffff;
    line-height: 1.8;
    font-weight: 300;
    text-align: justify;
    margin-bottom: 2rem;
}

.contact-footer-year {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #ffffff;
}

/* Footer Section */
.footer-contact {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding: 5rem 10%;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-image: url('assets/sua_ideia.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top: none;
}

.footer-left {
    display: flex;
    flex-direction: column;
}

.footer-cta-title {
    font-family: var(--font-headers);
    font-size: 5rem;
    line-height: 0.85;
    letter-spacing: 1px;
}

.footer-cta-sub {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 3rem;
}

.footer-cta-action {
    font-family: var(--font-body);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--text-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}

.contact-item-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: transparent;
    border: none;
    padding: 0;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: none;
}

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: transparent;
    background-image: url('assets/icone.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.contact-item-icon {
    width: 50%;
    height: 50%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.contact-item-card:hover .contact-item-icon {
    transform: scale(1.05);
}

.contact-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.contact-label {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    text-transform: none;
    letter-spacing: 0;
}

.contact-value {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
}

.contact-action {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 0.2rem;
    transition: var(--transition-smooth);
}

.contact-item-card:hover {
    transform: translateY(-5px);
    background-color: rgba(12, 21, 12, 0.95);
    border-color: var(--primary-green);
    box-shadow: 0 15px 35px rgba(53, 131, 52, 0.15);
}

.contact-item-card:hover .contact-icon-wrapper {
    background-color: var(--primary-green);
    transform: scale(1.05);
}

.contact-item-card:hover .contact-action {
    color: var(--primary-green);
    font-weight: bold;
}

/* ---------------------------------------------------- */
/* RESPONSIVE MEDIA QUERIES                             */
/* ---------------------------------------------------- */

@media (max-width: 1200px) {
    #about {
        padding: 5rem 5% 6rem 5%;
        gap: 6rem;
    }
    
    .about-container {
        gap: 4rem;
    }
    
    #services {
        padding: 6rem 5%;
    }
    
    #clients {
        padding: 6rem 5%;
    }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    #contact {
        padding: 6rem 5% 4rem 5%;
    }
    
    .service-description {
        width: 250px;
    }
}

@media (max-width: 992px) {
    .hero-main-title {
        font-size: 22vw;
    }

    .about-container {
        flex-direction: column;
        gap: 5rem;
    }
    
    .about-left {
        width: 100%;
        max-width: 380px;
    }
    
    .about-right {
        width: 100%;
    }
    
    .about-stats-footer {
        flex-direction: column;
        gap: 2.5rem;
        padding: 3rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-item {
        width: 100%;
        justify-content: flex-start;
        padding-left: 20%;
    }
    
    .footer-contact {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 3.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-details-bar {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        height: auto;
        padding: 1.5rem 2rem 1.5rem 3rem;
        gap: 0.5rem;
    }

    .service-description {
        width: 100%;
        text-align: left;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    #hero {
        padding: 2rem 5% 0 5%;
    }
    
    .hero-main-title {
        margin-bottom: 15vh;
    }

    #about {
        background-color: var(--primary-green);
        background-image: url('assets/top_degrade.png'), url('assets/fundo.png');
        background-blend-mode: normal, normal;
        background-size: 100% auto, cover;
        background-position: top center, center;
    }
    
    .hero-header-right {
        gap: 2rem;
    }
    
    .hero-intro-text {
        font-size: 1.4rem;
    }
    
    .services-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .services-line {
        width: 100%;
    }

    .services-title {
        font-size: 4rem;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        width: 100%;
        text-align: left;
        text-align-last: left;
    }
    
    .service-row {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .service-icon-box {
        width: 80px;
        height: 80px;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
    }
    
    .service-name {
        font-size: 1.8rem;
    }

    .service-description {
        font-size: 0.95rem;
    }
    
    .clients-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .clients-title {
        font-size: 4.5rem;
        transform: translateY(0);
    }

    .clients-quote {
        width: 100%;
        text-align: left;
        text-align-last: left;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .client-card {
        height: 120px;
    }
    
    .contact-top {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-huge-num {
        font-size: 5rem;
    }
    
    .contact-title {
        font-size: 3rem;
    }
    
    .contact-tagline {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 0;
    }
    
    .contact-body {
        margin-bottom: 5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-value {
        font-size: 1rem;
        word-break: break-word;
    }

    .about-p {
        text-align: left;
        text-align-last: left;
    }
}

@media (max-width: 576px) {
    .hero-header-right {
        display: none;
    }
    
    .hero-intro-text {
        font-size: 1.2rem;
        line-height: 1.5;
    }
    
    .about-p.highlight {
        font-size: 1.3rem;
    }
    
    .about-p {
        font-size: 1rem;
    }
    
    .stat-item {
        padding-left: 5%;
        gap: 1.5rem;
    }
    
    .stat-num {
        font-size: 4rem;
    }
    
    .services-title {
        font-size: 3rem;
    }

    .services-subtitle {
        font-size: 1rem;
    }
    
    .service-icon-box {
        width: 70px;
        height: 70px;
    }

    .service-icon {
        width: 32px;
        height: 32px;
    }
    
    .service-name {
        font-size: 1.5rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .clients-title {
        font-size: 3.5rem;
    }
    
    .clients-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .client-card {
        height: 100px;
        padding: 1rem;
    }
    
    .footer-cta-title {
        font-size: 3.5rem;
    }
    
    .contact-value {
        font-size: 0.85rem;
        word-break: break-word;
    }
}

/* Animations declarations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
        filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.7));
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes slideDownFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDownFadeInMain {
    0% {
        opacity: 0;
        transform: translateY(calc(4.5vw - 40px));
    }
    100% {
        opacity: 1;
        transform: translateY(4.5vw);
    }
}
