*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Segoe UI', sans-serif;
}

body{
  background:#f5f7fb;
  color:black;
  font-family:'Poppins',sans-serif;
}

.title,
.hero h2,
.logo,
.section-header h2,
.faq-header h2,
.pets-title{
    font-family:'Fredoka',sans-serif;
}

/* HEADER */
header{
  position:fixed;
  width:100%;
  top:0;
  background:rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
  z-index:1000;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 5%;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;

    text-decoration:none;
    color:#2a7fff;

    font-family:'Fredoka',sans-serif;
    font-size:1.8rem;
    font-weight:700;

    transition:.3s;
}

.logo:hover{
    transform:scale(1.05);
}

.logo i{
    font-size:1.5rem;
}

.logo img{
    width:50px;
    height:50px;
    object-fit:contain;
}

nav a{
  margin:0 10px;
  text-decoration:none;
  color:#333;
  transition:0.3s;
}

nav a:hover{
  color:#2a7fff;
}

.trust-bar{

    background:white;

    display:flex;

    justify-content:center;
    flex-wrap:wrap;

    gap:40px;

    padding:25px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.trust-bar div{

    display:flex;
    align-items:center;
    gap:10px;

    font-weight:600;

    color:#2a7fff;
}

/* HERO */
.hero{

    min-height:100vh;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    padding:120px 8%;

    background:
    linear-gradient(
        135deg,
        #eaf4ff,
        #f8fbff
    );

    overflow:hidden;

    position:relative;
}

.hero-image{

    display:flex;

    justify-content:center;
}

.hero-image img{

    width:100%;
    max-width:550px;

    animation:floatPet 4s ease-in-out infinite;
}

.hero-content{

    max-width:550px;
}

.hero-badge{

    display:inline-block;

    background:#dff0ff;

    color:#2a7fff;

    padding:10px 18px;

    border-radius:999px;

    font-weight:600;

    margin-bottom:20px;
}

.hero-content h2{

    font-family:'Fredoka',sans-serif;

    font-size:4rem;

    line-height:1.1;

    margin-bottom:20px;
}

.hero-content p{

    font-size:1.1rem;

    color:#555;

    margin-bottom:30px;
}

.about{

    padding:60px 5%;
}

.about-content{

    width:min(1200px,90%);
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:60px;
}

.about-text span{

    color:#2a7fff;
    font-weight:600;
}

.about-text h2{

    font-size:3rem;

    font-family:'Fredoka',sans-serif;

    margin:15px 0;
}

.about-text p{

    color:#666;

    line-height:1.8;
}

.about-image img{

    width:100%;
    max-width:450px;

    margin:auto;

    display:block;
}

.numbers{

    width:min(1100px,90%);
    margin:50px auto 0;

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:50px;

    text-align:center;
}

.numbers h3{

    font-size:2.5rem;

    color:#6ec1ff;

    font-family:'Fredoka',sans-serif;

    margin-bottom:8px;
}

.numbers span{

    color:#666;
    font-size:1rem;
}


/* =========================
   NOSSOS DIFERENCIAIS
========================= */

.benefits-section{
    padding:120px 5%;
}

.benefit-content{
    width:min(1200px,90%);
    margin:auto;

    display:grid;
    grid-template-columns:420px 1fr;
    gap:80px;

    align-items:center;
}

.benefits-text h2{
    font-family:'Fredoka',sans-serif;
    font-size:3.5rem;
    color:#2a7fff;

    margin-bottom:20px;

    display:flex;
    align-items:center;
    gap:15px;
}

.benefits-text p{
    font-size:1.1rem;
    color:#666;
    line-height:1.8;
}

/* Cards */

.benefits{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.benefit{
    background:white;
    padding:28px;
    border-radius:25px;

    display:flex;
    align-items:center;
    gap:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.3s;
}

.benefit:hover{
    transform:translateX(10px);
}

.benefit i{
    font-size:2rem;
    color:#2a7fff;
    min-width:40px;
}

.benefit h3{
    color:#222;
    margin-bottom:6px;
}

.benefit p{
    color:#666;
    line-height:1.6;
}

/* =========================
   RESPONSIVIDADE
========================= */

@media(max-width:900px){

    .benefit-content{
        grid-template-columns:1fr;
        text-align:center;
        gap:40px;
    }

    .benefits-text h2{
        justify-content:center;
        font-size:2.5rem;
    }

    .benefits{
        margin-top:20px;
    }

    .benefit{
        text-align:left;
    }

}

.btn{
  padding:10px 20px;
  border-radius:8px;
  text-decoration:none;
  margin:5px;
  display:inline-block;
}

.primary{
  background:white;
  color:#2a7fff;
}

.outline{
  border:2px solid white;
  color:white;
}

/* SECTIONS */
.section{
  padding:80px 5%;
  text-align:center;
}

.alt{
  background:#eef4ff;
}

.title{
  font-size:2rem;
  margin-bottom:30px;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.card{
  background:white;
  padding:25px;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-8px);
}

.card i{
  font-size:28px;
  color:#2a7fff;
  margin-bottom:10px;
}

/* FORM */
form{
  max-width:400px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:10px;
}

input, textarea{
  padding:12px;
  border:1px solid #ddd;
  border-radius:8px;
}

button{
  padding:12px;
  background:#2a7fff;
  color:white;
  border:none;
  border-radius:8px;
  cursor:pointer;
}

/* WHATSAPP */
.whatsapp{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25D366;
  color:white;
  width:55px;
  height:55px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  box-shadow:0 10px 20px rgba(0,0,0,0.2);
  text-decoration:none;
}

/* ANIMATION */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.more{
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:0.4s ease;
}

.toggle-btn{
  margin-top:10px;
  padding:8px 14px;
  border:none;
  background:#2a7fff;
  color:white;
  border-radius:6px;
  cursor:pointer;
}

.card.active .more{
  max-height:200px;
  opacity:1;
  margin-top:10px;
}

.card-btn{
  margin-top:10px;
  background:#2a7fff;
  color:white;
  border:none;
  padding:8px 12px;
  border-radius:6px;
  cursor:pointer;
  font-size:12px;
}

.menu-icon{
  display:none;
  font-size:24px;
  cursor:pointer;
}

/* DESKTOP */
#menu{
  display:flex;
  gap:20px;
}

/* ICON DESKTOP OCULTO */
.menu-icon{
  display:none;
  font-size:24px;
  cursor:pointer;
}

/* MOBILE */
@media (max-width:768px){

  .menu-icon{
    display:block;
  }

  #menu{
    position:absolute;
    top:70px;
    right:20px;
    background:white;
    flex-direction:column;
    padding:15px;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);

    display:none;
  }

  #menu.active{
    display:flex;
  }
}

.contact{
    padding:100px 0;
    text-align:center;
}

.contact h2{
    font-family:'Fredoka',sans-serif;
    margin-bottom:50px;
}

.contact .card i{
    font-size:2rem;
    margin-bottom:15px;
    color:#2a7fff;
}

.contact .card h3{
    margin-bottom:10px;
}

.contact .card p{
    margin-bottom:20px;
    line-height:1.6;
}

.contact-btn{
    display:inline-block;
    padding:10px 18px;
    background:#2a7fff;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    transition:.3s;
}

.contact-btn:hover{
    transform:translateY(-3px);
}

.contact{
    background:#eef4ff;
    padding:100px 0;
}

.map-section{

    padding:120px 5%;

    text-align:center;

    background:#f8fbff;
}

.map-container{

    width:min(1200px,100%);

    margin:auto;
}

.map-container iframe{

    width:100%;

    height:500px;

    border:none;

    border-radius:25px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.pets{

    padding:100px 5%;
}

.pets-grid{

    width:min(1200px,90%);

    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:20px;
}

.pets-grid img{

    width:100%;

    height:320px;

    object-fit:cover;

    border-radius:25px;

    transition:.4s;
}

.pets-grid img:hover{

    transform:scale(1.05);
}

@keyframes float {

  0%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-15px);
  }

  100%{
    transform:translateY(0);
  }

}

.stats{

    width:min(1200px,90%);

    margin:-70px auto 80px;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:20px;

    position:relative;

    z-index:5;
}

.stat{

    background:#fff;

    padding:30px;

    border-radius:25px;

    text-align:center;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.stat h3{

    font-size:2rem;

    color:#2a7fff;

    margin-bottom:10px;
}

.stat p{

    color:#666;
}

.benefits{

    width:min(1200px,90%);

    margin:80px auto;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:20px;
}

.benefit{

    background:white;

    padding:30px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.benefit i{

    font-size:2rem;

    color:#2a7fff;

    margin-bottom:15px;
}

@media(max-width:900px){

    .hero{

        grid-template-columns:1fr;

        text-align:center;

        gap:40px;
    }

    .hero-content{

        margin:auto;
    }

    .hero-image{

        order:-1;
    }

    .hero-content h2{

        font-size:2.8rem;
    }

    .map-container iframe{

        height:350px;
    }

}

/* =========================
   FAQ
========================= */

.faq{
    padding:120px 5%;
    background:#f8fbff;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:white;
    border-radius:20px;
    margin-bottom:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
}

.faq-item:hover{
    transform:translateY(-3px);
}

.faq-question{
    width:100%;
    border:none;
    background:white;
    padding:25px;
    cursor:pointer;

    display:flex;
    justify-content:space-between;
    align-items:center;

    font-size:1rem;
    font-weight:600;
    color:#222;
}

.faq-question span{
    color:#2a7fff;
    font-size:1.5rem;
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:.4s ease;
}

.faq-answer p{
    padding:0 25px 25px;
    color:#666;
    line-height:1.8;
}

/* Quando estiver aberto */

.faq-item.active .faq-answer{
    max-height:200px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}

.faq-header{

    text-align:center;

    margin-bottom:60px;
}

.faq-header h2{

    font-family:'Fredoka',sans-serif;

    font-size:3rem;

    color:#2a7fff;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    margin-bottom:15px;
}

.faq-header p{

    color:#666;

    font-size:1.1rem;
}

.section-header{
    text-align:center;
    margin-bottom:50px;
}

.section-header h2{
    font-family:'Fredoka',sans-serif;
    font-size:3rem;
    color:#2a7fff;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;

    margin-bottom:10px;
}

.section-header p{
    font-size:1.1rem;
    color:#666;
}

.pets-title{

    font-family:'Fredoka',sans-serif;

    font-size:3rem;

    color:#2a7fff;

    text-align:center;

    margin-bottom:50px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;
}

/* =========================
   FOOTER PREMIUM
========================= */

footer{

    background:#1e293b;

    color:white;

    text-align:center;

    padding:70px 20px 40px;
}

.footer-logo{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    margin-bottom:15px;
}

.footer-logo img{

    width:55px;
    height:55px;

    object-fit:cover;

    border-radius:50%;

    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

.footer-logo h3{

    font-family:'Fredoka',sans-serif;

    font-size:2rem;
}

footer p{

    max-width:600px;

    margin:0 auto 25px;

    color:#cbd5e1;

    line-height:1.8;
}

.footer-social{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-bottom:25px;
}

.footer-social a{

    width:50px;
    height:50px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;
    justify-content:center;

    color:white;

    font-size:1.2rem;

    text-decoration:none;

    transition:.3s;
}

.footer-social a:hover{

    background:#2a7fff;

    transform:translateY(-5px);
}

footer span{

    color:#94a3b8;

    font-size:.9rem;
}

.footer-logo{
    text-decoration:none;
}


html{
    scroll-behavior:smooth;
}

#home{
    scroll-margin-top:100px;
}

/* =========================
   SAÚDE INTELIGENTE
========================= */

.pet-health{

    padding:120px 5%;

    background:#eef6ff;
}

.health-box{

    max-width:700px;

    margin:auto;

    background:white;

    padding:40px;

    border-radius:30px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    text-align:center;
}

.health-box h2{

    font-family:'Fredoka',sans-serif;

    color:#2a7fff;

    font-size:2.5rem;

    margin-bottom:15px;
}

.health-box h2 i{

    margin-right:10px;
}

.health-box p{

    color:#666;

    margin-bottom:30px;
}

.health-box input,
.health-box select{

    width:100%;

    padding:15px;

    margin-bottom:15px;

    border:none;

    border-radius:15px;

    background:#f5f7fb;

    font-size:1rem;
}

.health-box button{

    width:100%;

    background:#2a7fff;

    color:white;

    padding:15px;

    border:none;

    border-radius:15px;

    cursor:pointer;

    font-weight:600;

    transition:.3s;
}

.health-box button:hover{

    transform:translateY(-3px);
}

#resultado{

    margin-top:25px;

    background:#f5faff;

    border-radius:20px;

    padding:20px;

    color:#333;

    line-height:2;
}

.resultado-box{

    position:relative;

    background:#f5faff;

    padding:25px;

    border-radius:20px;

    margin-top:20px;
}

.fechar-resultado{

    position:absolute;

    top:10px;

    right:5px;

    background:none;

    border:none;

    color:#2a7fff;

    font-size:1.4rem;

    font-weight:bold;

    cursor:pointer;

    padding:0;

    width:auto;

    height:auto;
}

.fechar-resultado:hover{

    color:#1d63c7;

    transform:scale(1.1);
}

/* =========================
   ASSISTENTE IA PET
========================= */

.pet-ai{

    padding:120px 5%;

    background:#f8fbff;
}

.chat-box{

    max-width:550px;

    margin:auto;

    background:white;

    border-radius:30px;

    overflow:hidden;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.chat-header{

    background:#2a7fff;

    color:white;

    padding:20px 25px;

    display:flex;

    align-items:center;

    gap:15px;
}

.chat-header i{

    font-size:2rem;
}

.chat-header h3{

    margin:0;
    font-size:1.2rem;
}

.chat-header span{

    opacity:.8;
    font-size:.9rem;
}

.chat-body{

    padding:30px;
}

.message.bot{

    background:#eef6ff;

    padding:18px;

    border-radius:18px;

    color:#333;

    line-height:1.8;

    margin-bottom:35px;
}

.chat-option{

    width:100%;

    background:white;

    color:#333;

    border:2px solid #dcecff;

    padding:15px 18px;

    border-radius:15px;

    text-align:left;

    margin-bottom:12px;

    cursor:pointer;

    font-size:1rem;

    font-weight:500;

    transition:.3s;
}

.chat-option:hover{

    border-color:#2a7fff;

    background:#f7fbff;

    transform:translateX(5px);
}

#mia-response{

    margin-top:20px;
}

.mia-message{

    background:#eef6ff;

    padding:18px;

    border-left:5px solid #2a7fff;

    border-radius:15px;

    color:#333;

    line-height:1.8;

    animation:fadeUp .4s ease;
}

/* =========================
   RESULTADO SAÚDE
========================= */

.resultado-box{

    position:relative;

    background:#f5faff;

    padding:25px;

    border-radius:20px;

    margin-top:20px;
}

.fechar-resultado{

    position:absolute;

    top:10px;

    right:15px;

    background:transparent !important;

    border:none !important;

    outline:none !important;

    box-shadow:none !important;

    color:#2a7fff;

    font-size:1.5rem;

    font-weight:bold;

    cursor:pointer;

    padding:0 !important;

    margin:0;

    width:auto !important;

    height:auto !important;

    min-width:auto !important;

    line-height:1;
}

.fechar-resultado:hover{

    color:#1b66d6;

    transform:scale(1.15);
}

.footer-dev{

    margin-top:25px;
}

.footer-dev a{

    color:#94a3b8;

    text-decoration:none;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:8px;

    transition:.3s;
}

.footer-dev a:hover{

    color:#6ec1ff;
}


@media(max-width:900px){

    .about-content{
        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:30px;
    }

    .about-image{
        width:100%;
        display:flex;
        justify-content:center;
    }

    .about-image img{
        width:85%;
        max-width:350px;
        height:auto;
    }

}

form input,
form select,
form textarea{
    width:100%;
}

#data,
#hora{
    width:100%;
}
