:root {
    /* Base colors */
    --primary-color: #112D2F;    
    --secondary-color: #98AFA7;  
    --background-color: #D9E9E6; 
    --accent-color: #CEA851;     
    --white: #FFFFFF;            

    /* Text colors for light background */
    --light-bg-text: #112D2F;
    --light-bg-title-start: #112D2F;
    --light-bg-title-end: #1D4A4D;

    /* Text colors for dark background */
    --dark-bg-text: #cadcd8;
    --dark-bg-title-start: #D9E9E6;
    --dark-bg-title-end: #98AFA7;
}

/* Reset de CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);  
}

/* Scrollbar personalizada */
/* Para navegadores baseados em Webkit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-color);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-color), var(--secondary-color));
    border-radius: 10px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
}

/* Para Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) var(--background-color);
}

/* Seleção de texto personalizada */
/* Padrão global */
::selection {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

::-moz-selection {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* Seleção em seções claras */
.section-light ::selection {
    background-color: var(--primary-color);
    color: var(--white);
}

.section-light ::-moz-selection {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Seleção em seções escuras */
.section-dark ::selection {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.section-dark ::-moz-selection {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* Seleção na seção hero */
#hero ::selection {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

#hero ::-moz-selection {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    margin-bottom: 0.5rem;
}

a {
    font-family: 'Inter', sans-serif;
}

/* Estilo para textos em negrito */
.b-light {
    color: #fff;
}

/* Section styles */

/*.section-light {
    background-color: var(--background-color);
    color: var(--light-bg-text);
}*/

.section-light h1,
.section-light h2 {
    background: linear-gradient(to bottom, var(--light-bg-title-start), var(--light-bg-title-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/*
.section-dark {
    background-color: var(--primary-color);
    color: var(--dark-bg-text);
} */

.section-dark h1,
.section-dark h2 {
    background: linear-gradient(to bottom, var(--dark-bg-title-start), var(--dark-bg-title-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}



/* Button styles */

.btn-wpp {
    background-color: #147D53;
    color: var(--dark-bg-title-start);
    text-decoration: none;
    border: 1px solid transparent;
    background-clip: padding-box;
    position: relative;
    border-radius: 10px;
    box-shadow: 
    inset 0 0px 7px rgba(0, 0, 0, 0.1),  /* Inner shadow */
    0 4px 6px rgba(0, 0, 0, 0.1);        /* Outer shadow */
    transition: all 0.5s ease; 
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    padding: .5rem 1.5rem;
    font-size: 16px;
    width:100%;
    margin-top:30px;
    letter-spacing: .5px;
}

.btn-wpp img {
    margin-right: 5px;
    width:18px; 
    height:18px;
}

.btn-wpp::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(180deg, var(--dark-bg-title-start), var(--dark-bg-title-end));
    border-radius: 10px;
    z-index: -1;
}

.btn-wpp:hover {
    background-color: #126e49;
}


/* ============================================
   HERO SECTION
   ============================================ */

#hero {
    background-color: var(--primary-color);
    background-image: url('../images/dra_gatos3_2-mobile.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

@media screen and (min-width: 768px) {
    #hero {
        background-image: url('../images/dra_gatos3_3.png');
        background-position: center;
        background-attachment: fixed;
    }
}

/* Header */
#hero header {
    width: 100%;
    padding: 2rem;
    position: relative;
}

#hero header .container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

#hero header .logo img {
    height: 30px;
    margin-right: 5px;
}

/* Mobile menu container with glass effect */
.mobile-menu-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1002;
    display: none;
    background: rgba(17, 45, 47, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 8px;
    border: 1px solid rgba(217, 233, 230, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .mobile-menu-container {
        display: flex;
    }
}

/* Hamburger button */
.hamburger {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1003;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-bg-text);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

#hero header nav ul {
    list-style: none;
    display: flex;
}

#hero header nav li {
    margin-left: 1rem;
}

#hero header nav a {
    font-size: 14px;
    color: var(--dark-bg-text);
    text-decoration: none;
    transition: all 0.5s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

#hero header nav a:hover {
    color: var(--primary-color);
    background-color: var(--accent-color);
}

/* Prevent scrolling when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Hide mobile-only links on desktop */
.mobile-only {
    display: none;
}

/* Mobile menu styles */
@media screen and (max-width: 767px) {


    /* Show mobile-only links on mobile */
    .mobile-only {
        display: block;
    }

    #hero header .container {
        justify-content: space-between;
    }

    #hero header nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }

    #hero header nav.active {
        transform: translateX(0);
    }

    #hero header nav ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    #hero header nav li {
        margin: 0;
    }

    #hero header nav a {
        font-size: 20px;
        color: var(--dark-bg-text);
    }
}

/* Hero Content */
#hero .hero-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 1rem 2rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

#hero .hero-text {
    width: 100%;
    margin-bottom: 1.5rem;
    text-align: left;
}

#hero .hero-text h1 { 
    font-size: clamp(28px, 5vw, 70px);
    font-weight: bolder;
    margin-bottom: 30px;
}

#hero .hero-text h2 { 
    font-size: clamp(16px, 3vw, 40px);
    font-weight: 100;
    color: #eff4f2;
}

#hero .hero-vsl {
    position: relative;
    width: 90%;
    max-width: clamp(350px, 50vw, 500px);
    aspect-ratio: 1 / 1;
    background-color: transparent;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    overflow: hidden;
    margin: 0;
}

#hero .hero-vsl .hero-thumbnail-img {
    display: none;
}

@media screen and (min-width: 1024px) {
    #hero .hero-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 4rem 2rem;
        gap: 4rem;
        min-height: calc(100vh - 120px);
    }

    #hero .hero-text {
        width: 50%;
        text-align: left;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    #hero .hero-vsl {
        width: 50%;
        max-width: none;
        margin: 0;
    }

    #hero .btn-wpp {
        width: fit-content;
    }
}

/* ============================================
   SECTION STYLES
   ============================================ */

/* Section header */
.section-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
}

.section-header h2 {
    text-align: center;
    font-size: 4rem;
}

/* Especialidades section */

/* -------------- Sobre ---------------- */
#sobre {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem 0 2rem;
    background-color: var(--primary-color);
    color: var(--dark-bg-text);
    margin-top: 2rem;
    position: relative;
}

.sobre-content {
    display: flex;
    flex-direction: column;
    margin-top:3rem;
    z-index: 1;
    width: 100%;
    padding-bottom: 3rem;
}
.sobre-text {
    display: flex;
    flex-direction: column;
    justify-content: center;  
    align-items: center; 
    
}

.metricas {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-top: 2rem;
    border-radius:20px;
    background-color: #10292B;
    padding: 1.5rem;
    text-align: center;
}

.metric {

}

.metric h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    color:var(--accent-color);
}
.metric p {
    font-size: 0.8rem;
    color: var(--dark-bg-text);
}

.about-image {
    width: 300px;
    z-index: 1;
}
.sobre-image-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
}

.brilho {
    width: 700px;
    position: absolute;
    left: -45%;
    top: 0;
    z-index: 999;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}


/* -------------- diferenciais ---------------- */
.vinte-anos{
    position: absolute;
    z-index: 1;
    width: 70%;
    animation: rotate-animation 20s linear infinite;
}

@keyframes rotate-animation {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

/* ============================================
   PLANEJAMENTO FAMILIAR SECTION
   ============================================ */

#planejamento-familiar {
    background-color: var(--primary-color);
    background-image: url('../images/planejamento-familiar.png');
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.planejamento-content {
    max-width: 1200px;
    margin: 0 auto;
}

.planejamento-content .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.planejamento-content .section-header h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.planejamento-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.planejamento-text {
    color: var(--dark-bg-text);
}

.planejamento-text p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.planejamento-text strong {
    color: var(--dark-bg-title-start);
    font-weight: 600;
}

.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: rgba(217, 233, 230, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.accordion-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--dark-bg-title-start);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 500;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(217, 233, 230, 0.05);
}

.accordion-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--accent-color);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.accordion-content p {
    color: var(--dark-bg-text);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.7;
    margin: 0;
}

.accordion-item.active {
    background: rgba(217, 233, 230, 0.15);
    border-color: var(--accent-color);
}

.accordion-item.active .accordion-header {
    color: var(--accent-color);
}

.btn-planejamento {
    max-width: 400px;
    margin: 2rem auto 0;
}

/* Responsive para Planejamento Familiar */
@media screen and (min-width: 768px) {
    .planejamento-info {
        flex-direction: row;
        gap: 4rem;
    }
    
    .planejamento-text {
        flex: 0 0 40%;
    }
    
    .accordion-container {
        flex: 1;
    }
}

@media screen and (min-width: 1024px) {
    #planejamento-familiar {
        padding: 6rem 4rem;
    }
    
    .accordion-header {
        padding: 1.8rem 2rem;
    }
    
    .accordion-content {
        padding: 0 2rem;
    }
    
    .accordion-item.active .accordion-content {
        padding: 0 2rem 2rem 2rem;
    }
}

/* ============================================
   DOENÇAS CRÔNICAS SECTION
   ============================================ */

#doencas-cronicas {
    background-color: var(--background-color);
    padding: 4rem 2rem;
    position: relative;
}

.doencas-cronicas-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.doencas-image-wrapper {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(17, 45, 47, 0.15);
}

.doencas-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.doencas-info {
    width: 100%;
    color: var(--light-bg-text);
}

.doencas-info h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.doencas-intro {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #666;
}

.doencas-highlight {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.doencas-highlight strong {
    color: var(--primary-color);
    font-weight: 600;
}

.doencas-box {
    background: linear-gradient(135deg, var(--accent-color), #d4a048);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(206, 168, 81, 0.2);
}

.doencas-box p {
    color: var(--primary-color);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.7;
    margin: 0;
}

.doencas-box strong {
    font-weight: 600;
}

.footer-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: left;
}

.btn-doencas {
    max-width: 400px;
}

/* Responsive para Doenças Crônicas */
@media screen and (min-width: 768px) {
    .doencas-cronicas-content {
        flex-direction: row;
        gap: 4rem;
        align-items: flex-start;
    }
    
    .doencas-image-wrapper {
        flex: 0 0 45%;
        position: sticky;
        top: 2rem;
    }
    
    .doencas-info {
        flex: 1;
    }
}

@media screen and (min-width: 1024px) {
    #doencas-cronicas {
        padding: 6rem 4rem;
    }
    
    .doencas-box {
        padding: 2.5rem;
    }
}

/* ============================================
   PROCEDIMENTOS DOMICÍLIO SECTION
   ============================================ */

#procedimentos-domicilio {
    background-color: var(--primary-color);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.procedimentos-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.procedimentos-content h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 3rem;
    color: var(--dark-bg-title-start);
    background: linear-gradient(to bottom, var(--dark-bg-title-start), var(--dark-bg-title-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.procedimentos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.procedimento-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 1rem;
    background: rgba(217, 233, 230, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.procedimento-item:hover {
    background: rgba(217, 233, 230, 0.1);
    transform: translateX(10px);
}

.procedimento-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-color);
    flex-shrink: 0;
}

.procedimento-item p {
    color: var(--dark-bg-text);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.6;
    margin: 0;
}

.btn-procedimentos {
    max-width: 400px;
    margin: 0 auto;
}

/* Responsive para Procedimentos */
@media screen and (min-width: 768px) {
    .procedimentos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media screen and (min-width: 1024px) {
    #procedimentos-domicilio {
        padding: 6rem 4rem;
    }
    
    .procedimento-item {
        padding: 1.5rem;
    }
}

/* ============================================
   HOSPITAL BANNER (FAIXA DOURADA)
   ============================================ */

.hospital-banners-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hospital-banner {
    background: linear-gradient(135deg, var(--accent-color), #d4a048);
    padding: 1.5rem 0;
    overflow: hidden;
    position: absolute;
    width: 120%;
    left: -10%;
    box-shadow: 
        inset 0 4px 8px rgba(17, 45, 47, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.4);
    border: 2px solid #d4a0487d;
}

.banner-top {
    top: 50%;
    transform: translateY(-50%) rotate(355deg);
    transform-origin: center;
    margin-top: -10px;
}

.banner-bottom {
    top: 50%;
    transform: translateY(-50%) rotate(4deg);
    transform-origin: center;
    margin-top: 0px;
}

.banner-content {
    display: flex;
    white-space: nowrap;
    animation: scroll-banner 30s linear infinite;
}

.banner-reverse {
    animation: scroll-banner-reverse 30s linear infinite;
}

.banner-content p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    padding-right: 3rem;
}

@keyframes scroll-banner {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-banner-reverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

@media screen and (min-width: 768px) {
    .hospital-banners-wrapper {
        height: 220px;
    }
    
    .banner-top {
        transform: translateY(-50%) rotate(355deg);
        margin-top: -10px;
    }
    
    .banner-bottom {
        transform: translateY(-50%) rotate(4deg);
        margin-top: 0px;
    }
    
    .banner-content p {
        font-size: 1.1rem;
    }
}

@media screen and (min-width: 1024px) {
    .hospital-banners-wrapper {
        height: 250px;
    }
    
    .hospital-banner {
        padding: 2rem 0;
    }
    
    .banner-top {
        transform: translateY(-50%) rotate(355deg);
        margin-top: -10px;
    }
    
    .banner-bottom {
        transform: translateY(-50%) rotate(4deg);
        margin-top: 0px;
    }
    
    .banner-content p {
        font-size: 1.2rem;
    }
}

/* ============================================
   ATENDIMENTO DOMICILIAR SECTION
   ============================================ */

#atendimento-domiciliar {
    background-color: var(--primary-color);
    padding: 4rem 2rem;
    position: relative;
}

.atendimento-domiciliar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.atendimento-image-wrapper {
    width: 100%;
    max-width: 500px;
    position: relative;
}

.atendimento-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.atendimento-selo {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 180px;
    height: auto;
    z-index: 2;
    animation: rotate-animation 20s linear infinite;
}

@media (max-width: 768px) {
    .atendimento-selo {
        width: 120px;
        bottom: -20px;
        right: -20px;
    }
}

.atendimento-info {
    width: 100%;
    color: var(--dark-bg-text);
}

.atendimento-info h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 2rem;
    line-height: 1.3;
    background: linear-gradient(to bottom, var(--dark-bg-title-start), var(--dark-bg-title-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.highlight-text {
    background: linear-gradient(to bottom, var(--dark-bg-title-start), var(--dark-bg-title-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.atendimento-card {
    background: linear-gradient(135deg, var(--accent-color), #d4a048);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(206, 168, 81, 0.2);
}

.card-destaque {
    background: linear-gradient(135deg, var(--accent-color), #d4a048);
}

.atendimento-card h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.atendimento-card p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: var(--primary-color);
    margin: 0;
}

.atendimento-section {
    margin-top: 2rem;
}

.atendimento-section h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    background: linear-gradient(to bottom, var(--dark-bg-title-start), var(--dark-bg-title-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.atendimento-subtitle {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--dark-bg-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.atendimento-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.atendimento-list li {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: var(--dark-bg-text);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.atendimento-list li::before {
    content: '●';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Responsive para Atendimento Domiciliar */
@media screen and (min-width: 768px) {
    .atendimento-domiciliar-content {
        flex-direction: row;
        gap: 4rem;
        align-items: flex-start;
    }
    
    .atendimento-image-wrapper {
        flex: 0 0 45%;
        position: sticky;
        top: 2rem;
    }
    
    .atendimento-info {
        flex: 1;
    }
}

@media screen and (min-width: 1024px) {
    #atendimento-domiciliar {
        padding: 6rem 4rem;
    }
    
    .atendimento-card {
        padding: 2.5rem;
    }
}

#diferenciais {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 2rem 4rem 2rem;
    background-color: var(--primary-color);
    color: var(--dark-bg-text);
    position: relative;
    overflow: hidden;
}

.diferenciais-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    z-index: 3;
    padding-top: 12rem;
}

.diferenciais {
    width: 100%;
    height: auto;
    background-color: #d9d9d92d;
    border-radius: 28px;
    border:1px solid #ffffff65;
    backdrop-filter: blur(10px);
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    padding: 2rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    z-index: -1;
}
.diferencial {
    margin: 1.5rem 0;
    --animate-duration: 1.5s;
}
.diferencial-icone {
    width: 50px;
    margin-bottom: 0.7rem;
}
.diferenciais h5 {
    font-size: 1rem;
    margin-bottom: 0.7rem;
}
.diferenciais p {
    font-size: 0.8rem;
}

/* efeito */

.diferenciais {
    position: relative;
    overflow: hidden;
    /* Para garantir que o efeito não ultrapasse o container */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.diferenciais.reflex-effect {
    /* Efeito de leve inclinação e escala ao ativar */
    transform: perspective(600px) rotateX(3deg) scale(1.01);
}

.diferenciais::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.22), transparent);
    transform: rotate(45deg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
}

.diferenciais.reflex-effect::before {
    opacity: 1;
    animation: reflection 1.2s cubic-bezier(0.1, 0, 0, 0.1);
}

@keyframes reflection {
    0% {
        opacity: 0;
        transform: rotate(45deg) translateX(-80%) scaleY(1.2);
    }
    40% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translateX(80%) scaleY(1.2);
    }
}     


/* -------------- FAQ ---------------- */
#faq{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem;
    background-color: var(--primary-color);
    color: var(--dark-bg-text);
    position: relative;
    z-index: 3; /* Ensure it's below .vinte-anos */

}
.faq-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
}
.faq-header h2 {
    text-align: center;
    font-size: 4rem;
    background: linear-gradient(to right, var(--dark-bg-text), var(--dark-bg-title-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
}

.faq-content {
    margin-top:2.5rem;
    width: 100%;
}
.faq-item .faq-icon {
    display: inline-block;
    
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item {
    height: auto;
    scroll-margin-top: 100px;
}
.faq-item.active {
    background-color: #d9d9d92d;
    border-radius: 10px;
    border:1px solid #ffffff65;
    backdrop-filter: blur(10px);
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    cursor: pointer;
    
}

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 100;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-left: 1rem;
}

.faq-answer {
    padding: 0 1rem 1rem 1rem;
    display: none; /* Initially hide the answers */
    font-weight: 100;
}


/* -------------- Testimonials (Swiper Version) ------------------ */

#testimonials {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.pegadas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ou cover dependendo de como as patas devem se comportar */
    z-index: 0;
    pointer-events: none;
}

#testimonials .testimonials-header,
#testimonials .testimonials-container {
    position: relative;
    z-index: 1;
}

#testimonials .testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

#testimonials .testimonials-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(to right, var(--light-bg-title-start), var(--light-bg-title-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1.1;
}

#testimonials .testimonials-header p {
    font-size: 1.1rem;
    color: var(--light-bg-text);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Swiper Container */
.testimonials-swiper {
    padding: 2rem 1rem 4rem !important; /* Extra padding for shadows and pagination */
}

/* Individual Slide */
.testimonial-card {
    background: #fff;
    border-radius: 24px;
    padding: 3.5rem 2.5rem 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(17, 45, 47, 0.05);
    user-select: none;
    cursor: grab;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    font-family: 'Inter', serif;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-card:active {
    cursor: grabbing;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(17, 45, 47, 0.08);
    border-color: rgba(17, 45, 47, 0.1);
}

.testimonial-card .stars {
    color: #FFD700; /* Gold */
    font-size: 1.2rem;
    margin-bottom: 2rem;
    letter-spacing: 4px;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.2));
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2D3436;
    font-style: italic;
    margin-bottom: 2.5rem;
    flex-grow: 1;
    font-weight: 400;
}

.testimonial-card .client-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-color);
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.testimonial-card .client-name::before {
    content: '— ';
    opacity: 0.5;
}

/* Swiper Controls */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color) !important;
    background: #fff;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    color: #fff !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

@media (max-width: 768px) {
    #testimonials {
        padding: 4rem 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important; /* Hide arrows on mobile */
    }
}

/* ============================================
   VETERINÁRIOS SECTION
   ============================================ */

#veterinarios {
    background-color: var(--background-color);
    padding: 4rem 2rem;
    position: relative;
}

.veterinarios-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.veterinarios-text {
    width: 100%;
    color: var(--light-bg-text);
}

.veterinarios-text h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(to bottom, var(--light-bg-title-start), var(--light-bg-title-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.veterinarios-intro {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #555;
}

.veterinarios-description {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #666;
}

.veterinarios-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.veterinarios-list li {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: #555;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.veterinarios-list li::before {
    content: '●';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.veterinarios-cta {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.veterinarios-form-wrapper {
    width: 100%;
    max-width: 500px;
    position: relative;
}

.veterinarios-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    display: block;
    margin: 0 auto 2rem auto;
}

.veterinarios-form {
    background-color: var(--primary-color);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 10px 40px rgba(17, 45, 47, 0.15);
}

.veterinarios-form input {
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    outline: none;
    transition: all 0.3s ease;
}

.veterinarios-form input::placeholder {
    color: rgba(17, 45, 47, 0.5);
}

.veterinarios-form input:focus {
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(206, 168, 81, 0.3);
}

.btn-submit {
    background: linear-gradient(135deg, var(--accent-color), #d4a048);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(206, 168, 81, 0.3);
    position: relative;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(206, 168, 81, 0.4);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-submit .spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(17, 45, 47, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Modal de Feedback */
.feedback-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    z-index: 10001;
    animation: fadeIn 0.3s ease;
}

.feedback-modal.active {
    display: flex;
}

.feedback-content {
    background: #fff;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    text-align: center;
    max-width: 450px;
    width: 90%;
    animation: slideUp 0.4s ease;
}

.feedback-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.feedback-icon.success {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.feedback-icon.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.feedback-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #112d2f;
}

.feedback-message {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feedback-btn {
    background: #112d2f;
    color: white;
    border: none;
    padding: 0.9rem 2.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feedback-btn:hover {
    background: #1a4447;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(17, 45, 47, 0.2);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive para Veterinários */
@media screen and (min-width: 768px) {
    .veterinarios-content {
        flex-direction: row;
        gap: 4rem;
        align-items: stretch;
    }
    
    .veterinarios-text {
        flex: 1;
    }
    
    .veterinarios-form-wrapper {
        flex: 0 0 45%;
        max-width: 450px;
    }

    .veterinarios-form {
        height: 100%;
        justify-content: center;
    }
}

@media screen and (min-width: 1024px) {
    #veterinarios {
        padding: 6rem 4rem;
    }
    
    .veterinarios-form {
        padding: 2.5rem;
    }
}

/* ----------------- footer ------------------ */
footer {
    background-color: var(--primary-color);
    color: var(--dark-bg-text);
    padding: 3rem 3rem;
}

.footer-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
    background-color: #d9d9d92d;
    border-radius: 28px;
    border:1px solid #ffffff65;
    backdrop-filter: blur(10px);
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    padding: 2rem;
}

.footer-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-bg-title-start);
}
.footer-cta p {
    font-size: 1rem;
}

.hr-footer {
    background-color: #081616;
    width: 100%;
    height: 3px;
    border-bottom: 1px solid #98AFA7;
    margin: 2rem 0 2rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.newsletter {
    width: 100%;
}
.footer-logo img {
    max-width: 250px;
    height: auto;
}

.newsletter h3 {
    font-weight: 100;
}
.newsletter p {
    color:#bdbcbc;
}

.newsletter form {
    border:1px solid #ffffff9d;
    padding: 0.5rem;
    border-radius: 7px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top:1rem;
}

.newsletter input {
    background-color: transparent;
    border: none;
    color: var(--dark-bg-text);
    padding-left: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    width: 100%;
}
.newsletter input:focus {
    outline: none;
    border:none;
}
.newsletter button {
    background-color: var(--accent-color);
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
}
.newsletter button:hover {
    background-color: #c29f4d;
}
.social-icons  {
    margin:1rem 0;
}
.social-icons a {
    text-decoration: none;
}
.social-icons img {
    width:28px;
    height: auto;
}

.footer-info {
    margin-top: 2rem;
    text-align: center;
}

.footer-info h4 {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-info p {
    color: var(--dark-bg-text);
    font-size: 1rem;
    margin: 0.4rem 0;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-info p i {
    width: 16px;
    height: 16px;
    color: var(--accent-color);
}

.footer-info p strong {
    color: var(--white);
    font-weight: 600;
    margin-right: 4px;
}

.footer-note {
    font-size: 0.85rem !important;
    opacity: 0.7;
    margin-top: -0.2rem !important;
    margin-bottom: 0.8rem !important;
    justify-content: center;
}

@media screen and (min-width: 668px) {
    .footer-note {
        justify-content: flex-start;
        padding-left: 24px;
    }
}

.footer-info a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-info a:hover {
    border-bottom-color: var(--accent-color);
}



.copyright_text {

    width: 100%;
    font-size: 16px;
    text-align: center;
    color: var(--dark-bg-text);
    margin-top: 4rem;
}
.copyright_text a {
    text-decoration: none;
    color:var(--dark-bg-text);
}
.copyright_text a:hover {
    text-decoration: underline;
}
/* ------------------------------------------- */
/* breakpoints */

/* Mobile First Approach */

@media screen and (min-width: 476px) {
    #hero header .logo img {
        height: 35px;
        margin-right: 10px;
    }
}

@media screen and (min-width: 576px) {
    #hero header {
        padding: 2rem 3rem;
    }
    #hero header nav a {
        font-size: 16px;
    }
}


/* Mobile (668px and up) */
@media screen and (min-width: 668px) {
    .btn-wpp {
        padding: .5rem 1.5rem;
        font-size: 16px;
        width:fit-content;
        margin-top:30px;
        margin-left: auto;
        margin-right: auto;
    }
    /* footer */
    .footer-content {
        display: flex;
        flex-direction: row;
    }
    .newsletter {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .footer-logo {
        width: 50%;
        align-items: flex-start;
    }
    .footer-info {
        text-align: left;
    }
    .footer-info p {
        justify-content: flex-start;
    }
    .footer-note {
        justify-content: flex-start;
        padding-left: 24px;
    }
    .brilho {
        display: block;
    }
    #hero .hero-text h1 { font-size: 60px; }
    #hero .hero-text h2 { font-size: 30px; }
    .especialidades-footer p{
        width: 70%; 
    }

}

/* Mobile (até 768px) */
@media screen and (max-width: 47.99em) {
    .section-header h2 {
        font-size: 2.5rem !important;
    }
    .section-header p {
        font-size: 1rem;
    }
}

/* Tablet (768px and up) */
@media screen and (min-width: 48em) {
    /* Tablet adjustments */
    #hero header {
        padding: 2rem 3rem;
    }
    #hero header .logo img {
        height: 38px;
        margin-right: 12px;
    }
    #hero .hero-content {
        padding: 2rem 3rem;
    }

    /* about section */
    .sobre-content {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    .sobre-image-container{
        align-items:start;
        margin: 0 20px 0 0;
        width: auto;
        
    }
    .sobre-text {
        align-items: flex-start;
        max-width: 500px;
    } 
    .brilho {
        left: -35%;
    }

    /* diferenciais section */
    .diferenciais {
        flex-direction: row;
        flex-wrap: wrap; /* Allow items to wrap to the next line */
        justify-content: space-around; /* Distribute items evenly */
    }

    .diferencial {
        width: 45%; /* Adjust width to fit two items per line */
        margin: 1rem 0; /* Adjust margin for spacing */
        margin: 1.5rem 1rem;
    }     

    .diferenciais h5 {
        font-size: 1.2rem;
        margin-bottom: 0.9rem;
    }
    .diferenciais p {
        font-size: 1rem;
    }
    #diferenciais .btn-wpp {
        margin-top: -20px;
    }

    /* footer */
    .footer-cta h2 {
        font-size: 4rem;
        margin-bottom: 1rem;
        color: var(--dark-bg-title-start);
    }
    .footer-cta p {
        font-size: 1.2rem;
    }
    .footer-logo img {
        max-width: 250px;
        height: auto;
    }
    footer {
        padding: 4rem 5rem 2rem 5rem;
    }

}

/* Desktop (1024px and up) */
@media screen and (min-width: 64em) {
    #hero header {
        padding: 3rem 4rem;
    }
    #hero header nav a {
        font-size: 18px;
    }
    #hero header .logo img {
        height: 40px;
        margin-right: 15px;
    }
    .btn-wpp {
        padding: .6rem 1.8rem;
        font-size: 20px;
        margin-top:30px;
        margin-left: auto;
        margin-right: auto;
    }
    .btn-wpp img {
        margin-right: 7px;
        width:25px; 
        height:25px;
    }
    /* Services section */
    .mySwiper {
        position: absolute;
        top:70%;
    }
    /* about section */
    .about-image {
       width: 500px;
    }
    .brilho {
        left: -25%;
    }
    /* diferenciais section */
    .diferenciais {
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .diferencial {
        width: 23%; /* Ajustar a largura para caber 4 itens por linha */
        margin: 1.5rem 1rem;
    }

    .diferenciais h5 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .diferenciais p {
        font-size: 1.1rem;
    }

    /* faq section 
    #faq {
        padding: 6rem 8rem;
    }*/

    /* faq section */
    #faq{
        flex-direction: row;
        padding: 4rem 6rem;
    }
    .faq-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-right: 2rem;
        /* width: 50%; */
    }
    .faq-header h2, p  {
        text-align:left; } 
    .faq-content {
        margin-top: 0rem;
    }

    .section-header h2 {
        font-size: 6rem; 
    }
    .faq-header h2 {
        font-size: 6rem;
    }
    #testimonials .testimonials-header h2 {
        font-size: 6rem;
    }


}

/* Large Desktop (1280px and up) */
@media screen and (min-width: 80em) {
    #hero header {
        padding: 4rem 5rem;
    }
    #hero header nav a {
        font-size: 24px;
    }
    #hero header .logo img {
        height: 55px;
        margin-right: 30px;
    }
    #hero .hero-content {
        padding: 3rem 4rem;
    }
    .brilho {
        width: 800px;
        left: -15%;
    }
    /* footer */
    .footer-cta h2 {
        font-size: 6rem;
        margin-bottom: 1rem;
        color: var(--dark-bg-title-start);
    }
    .footer-cta p {
        font-size: 2rem;
    }

    .footer-logo {
        width: 70%;
    }
    .newsletter {
        width: 30%;
    }
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(0) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* Modal de Vídeo */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.8);
}

.video-modal video {
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
}

/* Adicionar cursor pointer no thumbnail */
#heroThumbnail {
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
}

#heroThumbnail:hover {
    transform: scale(1.05);
}

/* Imagem thumbnail */
.hero-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Overlay do botão de play */
.play-button-overlay {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Círculo do botão de play */
.play-button-circle {
    width: 90px;
    height: 90px;
    background: rgba(206, 168, 81, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 32px rgba(206, 168, 81, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Anel externo decorativo */
.play-button-circle::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 2px solid rgba(206, 168, 81, 0.4);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ícone de play ajustado */
.play-button-circle svg path {
    fill: var(--primary-color);
}

.play-button-circle svg {
    margin-left: 4px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Efeitos de hover */
#heroThumbnail:hover .play-button-circle {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 12px 48px rgba(255, 255, 255, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

#heroThumbnail:hover .play-button-circle::before {
    opacity: 1;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border-color: rgba(255, 255, 255, 0.6);
}

#heroThumbnail:hover .play-button-circle svg path {
    fill: var(--accent-color);
}

/* Animação de pulso sutil */
@keyframes pulse-play {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.play-button-circle {
    animation: pulse-play 2s ease-in-out infinite;
}

#heroThumbnail:hover .play-button-circle {
    animation: none;
}

/* Responsive para modal de vídeo */
@media (max-width: 768px) {
    .video-modal-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}
