/* Reset and Base Styles */
/*
cores

#013b60 Azul logo
#ed7b01 Laranja logo
#2bc60c Verde CTA
#ffea00 Amarelo
#057915  Verde

*/
:root {
    --cor-primaria: #013b60;
    --cor-secundaria: #ed7b01;
    --cor-accent: #2bc60c;
    --cor-accent-2: #ffea00;
    --cor-accent-3: #00D3FF;
    --cor-alt: #057915;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
      font-family: "Poppins", sans-serif;    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    min-width: 380px;
    
}
section {
         scroll-margin-top: 30px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: var(--cor-accent-2);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.paw-print {
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 800;
    color: #0B5563;
    letter-spacing: 1px;
}

.logo-text p {
    font-size: 10px;
    color: #666;
    letter-spacing: 2px;
    margin-top: -5px;
}
.logo *
{
    display: none;
}
.logo /*img*/ {
    width: 240px;
    aspect-ratio: 360 / 92;
    background: url(../img/logo-caojunto.png) no-repeat center / contain;
    position: relative;
    align-self: flex-start
}
.logo:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    aspect-ratio: 14 / 8;
    background: url(../img/bg-logo.svg) no-repeat center bottom /contain; 
    z-index: -1;
    filter: drop-shadow(3px 3px 0px rgba(0 0 0 / .2));
}

.nav {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: space-around;
    margin-left: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    scroll-target-group: auto;


}

.nav a {
    color: var(--cor-primaria);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;

    &:after {
        content: "";
        width: 100%;
        height: 4px;
        border-radius: 5px;
        background: var(--cor-secundaria);
        position: absolute;
        bottom: -5px;
        left: -5%;
        width: 0%;
        transform: skewY(-2deg);
        transition: all .25s;
    }
    &:hover{
        color: var(--cor-secundaria)
    }
    &:hover:after,
    &:focus:after,
    &:active:after,
    &:target-current:after
    {
         width: 110%;
    }

}

.nav a:hover {
   /* color: #FFD700;*/
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.header .btn {
    min-width: 140px;
}
.btn-primary {
    background-color: var(--cor-accent);
    color: #fff;
}

.btn-secondary {
    background-color: var(--cor-secundaria);
    color: #FFF;
}

.btn-success {
    background-color: var(--cor-accent);
    color: #fff;
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    background: var(--cor-primaria) url(../img/bg-hero.webp) no-repeat center / cover;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}
.hero:before {
    content: " ";
    background: #ED7B01;
    position: absolute;
    width: 100%;
    top: 0;
    height: 5px;
}

.paw-decoration {
    position: absolute;
}

.paw-top-right {
    width: clamp(100px, 20vw, 400px);
    aspect-ratio: 1 / 1;
    top: 0px;
    right: 0px;
    background: url(../img/pata-big.png) no-repeat center top -15px/ contain;
}


.hero-content {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.hero-text {
    flex: 1;
    margin-bottom: 50px;
}

.hero-title {
    font-size: 55px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
}

h2 {
font-family: Gobold Lowplus, sans-serif;
font-weight: normal;
}



.hero-title .highlight {
    color: var(--cor-accent-3);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--cor-accent-3);
    margin-bottom: 20px;
    font-family: Gobold Lowplus, sans-serif;
}

.hero-subtitle .signature {
    display: inline-block;
    width: clamp(300px,80%,450px);
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0 0 0 / .2);
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 30px;
    border: 2px solid rgba(255 255 255 / .15); 
    border-radius: 15px;
    padding: 15px;
    position: relative;
    font-family: Gobold Lowplus, sans-serif;
    z-index: 10;
    width: clamp(300px,100%,500px);

}
.hero-description:before
{
    content: "“";
    position: absolute;
    font-size: 14em;
    line-height: 1em;
    top: 0;
    left: -30px;
    opacity: .25;
    display: inline-grid;
    color: #05D4FF;
    font-family: Gobold Lowplus, sans-serif;
    z-index: -1
    
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
        gap: 0; /* Reset gap to rely on margin */
    }
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 15px; /* Explicit margin */
    }
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

.hero-badges {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.badge {
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}



.hero-image {

    width: 60%;
    position: relative;
}


.hero-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0;
    display: flex;
    object-fit: cover;
}

/* Behaviors Section */
.behaviors {
    background:
    url(../img/caojunto-bolinha.png) no-repeat 10px bottom / clamp(150px,20vw,300px) ,
    url(../img/bg-amarelo.webp) no-repeat center top / cover,
    var(--cor-accent-2);
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #EE2700;
    margin-bottom: 50px;
}

.subtitle-green {
    color: var(--cor-alt);
    display: block;
    font-size: 32px;
}

.behavior-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.behavior-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.behavior-item {
    background:  no-repeat 5px center / contain;
    background-color: #fff;
    padding: 0px 20px 0  ,;
    min-height: 63px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer
}
.behavior-item:hover {
    transform: translateX(5px);
}
.latido{ background-image: url(../img/comportamento_0005_4.png); }
.ansiedade{ background-image: url(../img/comportamento_0004_5.png); }
.xixi{ background-image: url(../img/comportamento_0000_9.png); }
.destruicao{ background-image: url(../img/comportamento_0008_1.png); }
.fugir{ background-image: url(../img/comportamento_0003_6.png); }
.morder{ background-image: url(../img/comportamento_0006_3.png); }
.pessoas{ background-image: url(../img/comportamento_0001_8.png); }
.animais{ background-image: url(../img/comportamento_0002_7.png); }
.puxar{ background-image: url(../img/comportamento_0007_2.png); }

.behavior-item:has(input:checked) {
    outline: 2px solid var(--cor-accent);
}

.behavior-item input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    accent-color: var(--cor-accent);
    order: 2;
    position: absolute;
    right: 15px;
}
.behavior-item:after{
    content: "";
    position: absolute;
    right: 5px;
    width: 45px;
    height: 100%;
    margin-top: -1%;
    background: url(../img/check.png) no-repeat center / contain;
    transform: scale(0);
    transition: all .2s;
    pointer-events: none;
}
.behavior-item:has(input:checked):after {
    transform: scale(1)
}

.behavior-item label {
    flex: 1;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    align-self:normal ;
    padding-left: 70px;
    display: flex;
    align-items: center;
}

.behavior-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.behavior-image {
    width: 267px;
    max-width: 600px;
    border-radius: 20px;
    position: absolute;
    filter: drop-shadow(2px 3px 6px rgba(0 0 0 / .5));
    z-index: 1;
    right: 20px;
    bottom: -22px;
    
}

/* Results Section */
.results {
    background: 
        url(../img/caojunto-resultado.png) no-repeat bottom 0 left 10% / 52vw,
        url(../img/bg-verde.webp) no-repeat center bottom 10px / cover,
        #2BC30C
    ;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.results:before {
    content: "";
    width: 0;
  height: 0;
    
  /* Largura total da base da seta (42px) é a soma das bordas esquerda e direita (21px + 21px) */
  border-left: 21px solid transparent;
  border-right: 21px solid transparent;
  /* Altura total da seta (21px) é definida pela borda superior */
  border-top: 21px solid #ffe900;
  /* Garante que o elemento se comporte como um bloco para o layout */
  display: block;
  position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
}


.results .container {
    display: flex;
    flex-wrap: wrap;
}
.results .paw-result-right {
    position: absolute;
    width: clamp(100px, 20vw, 400px);
    aspect-ratio: 1 / 1;
    height: auto;
    display: block;
    background: url(../img/pata-big.png) no-repeat center / contain;
    transform: rotate(60deg);
    top: 30px;
    right: -30px;
}




.section-title-white {
    text-align: center;
    font-size: 42px;
    color: var(--cor-accent-2);
    margin-bottom: 20px;
    font-weight: normal;
    flex-grow: 1;
}

.subtitle-small {
    display: block;
    font-size: 20px;
    font-weight: 400;
    margin-top: 0px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    order: 2;
    width: 50%;
    margin-left: 50%;
}

.result-card {
    background-color: #2cc60c;
    padding: 15px 15px 20px;
    padding-left: 125px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
    width: 85%;
    margin-left: -120px;
    
    
    &:after {
        content: "";
        position: absolute;
        right: -25px;
        top: -30px;
        display: block;
        width: 58px;
        height: 58px;
        background: url(../img/check.png) no-repeat center / contain ;
    }
}
.result-card:nth-child(2){
    margin-left: -60px;
}
.result-card:nth-child(3){
    margin-left: 0px;
}

.result-card:hover {
    transform: translateY(-10px);
}

.result-icon {
    position: absolute;
    left: 20px;
    top: 20px;
}

.result-card h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    margin: 0;
}

.result-card p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    line-height: 1.6;
}
.results-grid .btn{
     width: 300px;
    margin: auto;
    position: relative;

}

/* Testimonials Section */
.testimonials {
    background: 
        url(../img/bg-verde.webp) no-repeat center bottom 10px / cover,
        #2BC30C;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin-top: -1px;
}

.section-title-dark {
    text-align: center;
    font-size: 42px;
    color: var(--cor-accent-2);
    margin-bottom: 50px;
}

.testimonial-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: auto auto 40px;
    padding: 50px 30px 60px;
    background: var(--cor-accent-2);
    border-radius: 20px;
    width: clamp( 360px, 100%, 900px);
    overflow: hidden;
    position: relative;
}
.carousel-wrapper-inner {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-arrow {
    width: 60px;
    height: 60px;
    background: url(../img/seta.png) no-repeat center / contain;
    font-size: 0px;
    cursor: pointer;
    border: 0;
    outline: 0;
    position: absolute;
    z-index: 100;
}
.carousel-next {
    transform: rotate(180deg);
    right: 0;
}
.carousel-prev {
    left: 0;
}
.carousel-arrow:hover {
    transform: scale(1.1);
}
.carousel-next:hover {
    transform: scale(1.1) rotate(180deg)
}
.testimonial-item {
      flex: 0 0 100%;    /* Não deixa crescer, não deixa encolher, fixa em 100% */
    width: 100%;       /* Garante que o item tenha a largura total do carrossel */
    box-sizing: border-box;
    display: flex;     /* Flex para centralizar o card dentro dele, se quiser */
    justify-content: center;  
}
.testimonial-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px 40px 20px;
    display: flex;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    align-items: center;
    position: relative;
    text-align: center;
    margin-left: 160px;
      width: calc(100% - 220px);       /* Faz o card ocupar toda a largura do item */
    /* Se você quiser que o card seja menor que o slide, mude para:
       width: 90%; e o justify-content: center no item vai centralizá-lo */
    
    max-width: 70%;   /* Previne que o card estoure o container */
    box-sizing: border-box;
    white-space: normal;
    
}
.testimonial-card:after {
             content: '';
            position: absolute;
            bottom: -33px;
            width: 0;
            height: 0;
            border-top: 35px solid #FFF;
            border-right: 40px solid transparent;
            left: 20px;
}

.testimonial-image {
    width: 180px;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    object-fit:cover;
    position: absolute;
    top: 30px;
    margin-left: -200px;

/* Cria o espaço para a borda */
  border: 5px solid transparent;
  
  /* Transição suave para o filtro e para a borda */
  transition: filter 0.3s ease, background-image 0.3s ease;
}
.testimonial-image:hover{
  filter: brightness(0.5);
}
.play {
    cursor: pointer;    
    &:after{
        content: "";
        display: block;
        position: absolute;
        width: 64px;
        aspect-ratio: 1 / 1;
        background: url(../img/ico-play.png) no-repeat;
        background-size: contain;    
        top: 90px;
        opacity: .5;
        left: -100px;
        cursor: pointer;
        pointer-events: none;
    }
    &:hover:after {
        opacity: 1
    }
}
.testimonial-content {
    flex: 1;
    color: #222;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 15px;
}
.testimonial-text:after,
.testimonial-text:before
{
    content: "“";
    position: absolute;
    font-size: 10em;
    line-height: 1em;
    top: -10px;
    left: 20px;
    opacity: .5;
    display: inline-grid;
    color: #05D4FF;
    font-family: Gobold Lowplus, sans-serif;
}
.testimonial-text:after
{
    top: auto;
    left: auto;
    right: 20px;
    bottom: -10px;
    transform: rotate(180deg)
}

.testimonial-author {
    font-size: 18px;
    margin: auto;
    display: inline-block;
    padding: 0 20px 10px;
    position: relative;
}
.testimonial-author:after{
    content: "";
    width: 100%;
    display: block;
    height: 5px;
    background: var(--cor-accent-2);
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.testimonials .btn {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

/* About Section */
.about {
    background: var(--cor-primaria) url(../img/bg-azul-textura.webp) no-repeat center top / cover;
    padding: 80px 0 180px;
}

.about-content {
    display: flex;
    gap: 20px;
    position: relative;
    background: 
        url(../img/caojunto-com-pastor.png) no-repeat 20% bottom,
         url(../img/pata-bg.png) no-repeat bottom -200px left  / 40% ,
        url(../img/bg-amarelo-curvas.png) right 6vw top no-repeat, #ED7B01 ;
    border-radius: 20px;
    padding: 20px 20px 0;
}

.about-text {
    flex: 1;
}

.about-label {
    font-family: Gobold Lowplus, sans-serif;
    font-weight: normal;
    font-size: 18px;
    color: var(--cor-secundaria);
    margin-bottom: 10px;
}

.about-title {
    font-size: 36px;
    color: var(--cor-secundaria);

    margin-bottom: 10px;
}

.about-subtitle {
    display: block;
    font-size: 18px;
    color: var(--cor-accent);
    font-weight: 600;
    margin-top: 5px;
}
.about-subtitle .badge {
    font-family: "Poppins", sans-serif;
    background: var(--cor-secundaria);
    font-size: .75em;
    font-weight: normal;
    border: none;
    display: inline-block;
    white-space: nowrap;
    margin: 5px 10px 5px 0;
}

.about-description {
    line-height: 1.7;
    margin: 30px 10% 30px 0;
    padding: 20px;
    background: #fff264;
    border-radius: 15px;
}

.about-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 350px;
    flex-wrap: wrap;
}

.about-action-image {
    width: 200px;
    height: auto;
    border-radius: 15px;
    margin: auto
}
.about .container {
    position: relative;
}
 .about .container:after {
     content: "xxx";
     position: absolute;
     bottom: -100px;;
     width: clamp(300px,35%,800px); 
 }
.signature-text, .signature, .about .container:after {
    color: transparent;
    background: url(../img/jonathan_normandia_assinatura.png) no-repeat center/ cover;
    display: block;
    aspect-ratio: 430 / 79;
}
.modal .signature-text {
     width: clamp(300px,80%,600px);
    margin: auto;
}

.about-gallery {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-content: center;
    gap: 15px;
    padding: 30px 5px;
    margin-bottom: -150px;
    position: relative;
}

.gallery-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    cursor: url('../img/pata.png'), pointer;
}

.gallery-image:hover {
    transform: scale(1.05);
}
.gallery-image:first-child {
    margin-top: 50px;
}
.gallery-image:last-of-type {
    margin-top: -50px;
}
.link-instagram {
    position:absolute;
    display: block;
    top: calc(50% - 40px);
    left: 50%;
    transform: translate(-50%);
    margin: auto;
    background: #FFF url(../img/ico-instagram.png) no-repeat center ;
    text-indent: -1000px;
    overflow: hidden;
    width: 80px;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    transition: all .2s;
    &:hover {
        outline: 5px solid var(--cor-accent-2);
        outline-offset: -4px
    }
    
}
/*moda historia - especifico */
#historia .highlight {
    background: var(--cor-accent-2);
}
#historia .modal-body p{
    &:nth-child(2n) {
        padding: 20px;
        background: var(--cor-accent-2);
    }
}

/* Footer */
.footer {
    background-color: var(--cor-primaria);
    padding: 40px 0 30px;
    text-align: center;
}
.footer-logo * {
    display: none;
}
.footer-logo {
    width: 240px;
    aspect-ratio: 360 / 92;
    background: url(../img/logo-caojunto-negativo.png) no-repeat center / contain;
    margin: auto auto 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-logo .logo-text h1 {
    color: #fff;
}

.footer .btn {
    margin-bottom: 30px;
}
.footer p.copyright {
    color: rgba(255,255,255,.5);
    font-size: .9em;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 30px;
    & a {
          color: rgba(255,255,255,.5); 
        white-space: nowrap;
    }
}
footer p.footer-credit a {
    color: rgba(255,255,255,.5); 
    white-space: nowrap;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
}

.footer-credit {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 38px;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }


    .hero-badges {
        justify-content: center
    }
    .hero-description {
        margin: auto auto 30px;
    }
    .hero-image
    {
    width: 70%;
    margin: auto;
    }
    .hero-text {
        margin-bottom: 0;
    }
    
    .behavior-image {
    width: 167px;
    border-radius: 20px;
    position: absolute;
    filter: drop-shadow(2px 3px 6px rgba(0 0 0 / .5));
    z-index: 1;
    right: 20px;
    bottom: -15px;
    }
    
    .results {
        background: 
            url(../img/caojunto-resultado.png) no-repeat bottom 0 right 20vw / 100vw,
            url(../img/bg-verde.webp) no-repeat center bottom 10px / cover,
            #2BC30C;
    }
    .result-card {
        box-sizing: border-box;
        width: 95%;
    }
    .about {
        
    }
    .about .container:after{
        left: 50%;
        transform: translateX(-50%);
    }
    
}

@media (max-width: 768px) {

    .behaviors,.about {
        padding: 30px 0
    }
    .results, .testimonials {
        padding-top: 30px;
    }
    .section-title, .section-title-dark  {
        margin-bottom: 30px;
    }
    .testimonials {
        padding-bottom: 50px;
    }
    
    .header-content {
        flex-wrap: wrap;

    }
    .logo {
        width: 33vw
    }
    .logo:before {
        width: 118%;
        margin-left: 10px;
    }
    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 15px;
        margin-top: 15px;
        margin-left: unset
    }
    .header .btn {
        margin-top: 10px;
    }
    .hero-title {
        font-size: 32px;
    }

    .hero-description br {
        display: none;
    }

    .yellow-circle {
        width: 300px;
        height: 300px;
    }

    .behavior-grid {
        grid-template-columns: 1fr;
    }


    .results {
        background: 
            url(../img/caojunto-resultado.png) no-repeat bottom 0 left 5vw / 96vw,
            url(../img/bg-verde.webp) no-repeat center bottom 10px / cover,
            #2BC30C;
    }
    .results-grid {
        margin: 0 30px  50vw;
        width: 100%;
          .result-card {
            box-sizing: border-box;
            width: 100%;
            margin: 0 auto;
        }
    }
    .result-card:after {
        width: 50px;
        
    }
    


    
    .testimonial-card {
        flex-direction: column;
        text-align: center;
        margin: 50px 0 0;
        width: 100%;
        padding: 80px 15px 20px;
        max-width: 80%;
    }
    .testimonial-text{
        font-size: 1em;
    }
    .testimonial-text:before, .testimonial-text:after {
        font-size: 6em
    }
    .testimonial-image {
        top:  calc(-40px - 5vw);
        left: 50%;
        width: clamp(120px,20vw,190px);
        transform: translateX(-50%);
        margin: 0;
        
    }
    .play:after {
        top: -37px;
        left: 50%;
        transform: translateX(-50%)
    }

  .about-content {
        flex-direction: column;
        background: 
        url(../img/caojunto-com-pastor.png) no-repeat center bottom -5px / 30vw,
         url(../img/pata-bg.png) no-repeat bottom -30vw center  / 70vw ,
        url(../img/bg-amarelo-curvas.png) right -30vw top no-repeat, #ED7B01 ;
      padding-bottom: 45vw
      
    }
    .about .container:after {
        bottom: -15vw;
    }
    .about {
        padding-bottom: 25vw;
    }
    .about-buttons {
        margin-bottom: 0px;
    }
    .about-description {
        margin-right :0;
        font-size: .9em;
    }
    .about-gallery
    {
        margin-bottom: 0;
    }

    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 600px) {

    .hero-title {
        font-size: 26px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-title-white {
        font-size: 30px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .btn-large {
        padding: 12px 25px;
        font-size: 14px;
    }
    .testimonial-text {
        font-size: .9em;
        line-height: 1.4;
    }
    .result-card {
        padding-left: 20vw;
        
        & h3 {
            font-size: 1.15em;
        }
        & p {
            font-size: .9em;
            line-height: 1.4;
          }
        & img {
            width: 15vw
        }
    }
    .behavior-grid {
        gap: 15px
    }
    .behavior-item {
        min-height: 50px;
    }
    

}
@media (max-width: 500px) {
    .header-content {
        gap: 10px;
    }

}
/* Placeholder Images Styling */
img {
    display: block;
}


.modal
{
    background: #FFF;
    width: clamp(400px,90%, 500px);
    top: 50%;
    left: 50%;
    max-height: 90vh;
    transform: translate(-50%,-50%);
    padding: 30px;
    border-radius: 20px;
    border-color: #000;
    box-shadow: 15px 15px 50px rgba(0,0,0,1);
    & .btn-fechar {
            aspect-ratio: 1 / 1;
            display: inline-block;
            width: 40px;
            font-size: 1.6em;
            border-radius: 100%;
            background: #FFF;
            border: 1px solid;
            cursor: pointer;
            align-self: flex-start
        }
    & .modal-header,
    & p
        {
        margin-bottom: 20px;
        }
    & .modal-header {
        display: flex;
        justify-content: space-between;
        & img {
            height: 2cap;
            display: inline;
        }
    }
    
    & .form-group {
        display: flex;

        margin-bottom: 15px;
        flex-wrap: wrap;
        &>label {
            font-weight: bold;
            width: 100%;
        }
        &:has([type=radio]){
            gap: 0px 10px;
        }
    }
    & [type=text],
    & [type=tel]
    {
        padding: 15px;
        flex: 1;
        font-size: 1.2em;
        
    }
    & .radio-item {
        margin: 15px 0 0;
        position: relative;
        display: flex;
        gap: 10px;
        padding: 0;
        border-radius: 50px;
        border: 1px solid #ddd;
        & label {
                padding: 8px 20px 8px 50px;
                cursor: pointer;
                flex: 1;
            }
        & [type=radio] {
            width: 24px;
            height: 24px;
            cursor: pointer;
            accent-color: var(--cor-accent);
            order: 2;
            position: absolute;
            left: 11px;
            top: 50%;
            transform: translateY(-50%)
        }
        &:has(input:checked) {
            border: 1px solid var(--cor-accent);
        }
    }
    &::backdrop  {
      background-color: rgba(0, 0, 0, 0.8); 
      backdrop-filter: blur(5px); 
    } 
    & .modal-footer {
        text-align: center;
        margin-top: 30px;
    }
    & .btn-primary {
        font-size: 1.1em;
        min-width: 270px;    
    }
    .video-wrapper video {
      width: 100%;
      max-height: 80vh;
      aspect-ratio: 9 / 16; /* Mantém o formato Instagram */
      object-fit: cover;    /* Garante que preencha o espaço sem sobras */
      border-radius: 10px;
      display: block;
    }
    .video-wrapper .btn-fechar {
        position: absolute;
        right: 10px;
        top: 10px;
    }
    .cta-container
     {
         text-align: center;
         margin-top: 10px;
     }
}
.cta-video {
    position: fixed;
    width: 180px;
    bottom: 15px;
    right: 15px;
    z-index: 1000;
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid var(--cor-accent-2) ;
    background: var(--cor-accent-2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all .2s;
    & a {
        text-decoration: none;
    }
    & h2 {
        margin: 0;
        padding: 10px;
        font-size: 18px;
        line-height: 1.4;
        display: block;
        color: var(--cor-primaria);
        background:var(--cor-accent-2);
        margin-top: -100px;
        z-index: 2;
        position: relative
    }
    & img
        {
            border-radius: 0;
            margin: 0;
            position: relative;
            filter: brightness(.65)
        }
    &:after{
        content: "";
        display: block;
        position: absolute;
        width: 64px;
        aspect-ratio: 1 / 1;
        background: url(../img/ico-play.png) no-repeat;
        background-size: contain;    
        top: 80px;
        opacity: .5;
        left: 50px;
        cursor: pointer;
        pointer-events: none;
    }
    &:hover img {
        filter: brightness(.4)
    }
    .btn-fechar {
            aspect-ratio: 1 / 1;
            display: inline-grid;
            place-items: center;
            width: 30px;
            text-align: center;
            font-size: 1.6em;
            line-height: 1;
            padding: 0;
            border-radius: 100%;
            color: #000;
            background: #FFF;
            border: none;
            cursor: pointer;
            align-self: flex-start;
            position: absolute;
            top: 3px;
            right: 3px;
            z-index: 1000;
            input {
                display: none;
            }
    }
    &:has(:checked){
        transform: scale(0);
        transform-origin: bottom;
        
    }
}

/*fontes*/

@font-face{
    font-family: "Gobold Lowplus";
     src: url("../fonts/GoboldLowplus.woff2")format("woff2");
    font-weight:normal;
    font-style:normal;
    font-display:swap;
}





/* Privacy Policy Styles */
.privacy-policy {
    padding: 60px 0;
}

.privacy-policy .section-title {
    color: var(--cor-primaria);
}

.privacy-policy h3 {
    color: var(--cor-primaria);
    margin-top: 30px;
    margin-bottom: 10px;
}

.privacy-policy p {
    margin-bottom: 15px;
    text-align: justify;
}

.privacy-actions {
    margin-bottom: 60px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    color: #333;
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    font-size: 14px;
    margin: 0;
}

.cookie-content a {
    color: var(--cor-primaria);
    font-weight: 700;
    text-decoration: underline;
}

.cookie-content .btn {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 400px;
        border-radius: 12px;
        padding: 24px 16px;
        box-shadow: 0 4px 25px rgba(0,0,0,0.4);
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
