/* --- VARIAVEIS E RESET --- */
:root {
    --primary-teal: #0b4d53;
    --accent-color: #fcbd13;
    --star-yellow: #fcbd13;
    --yellow: #fcbd13;
    --yellow-light: #fdf8e4;
    --wine: #a81e21;
    --green: #006033;
    --bg-light: #fffdf9;
    --bg-footer: #f8fbfb;
    --bg-light-blue: #f4fbfc;
    --text-dark: #222;
    --text-gray: #666;
    --text-muted: #777;
    --light-green: #e0f7f4;
    --light-yellow: #fff9e6;
    --text-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito Sans", sans-serif;
}
a{
    text-decoration: none;
    color: #000;
}
html {
    scroll-behavior: smooth;
}

body {
    background-color: #FFF;
    color: var(--text-dark);
}

/* --- COMPONENTES GERAIS --- */
.btn-primary,
.btn-primary-teal,
.btn-explore {
    background: var(--primary-teal);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    transition: 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover,
.btn-primary-teal:hover,
.btn-explore:hover {
    background-color: #083a3f;
    transform: translateY(-2px);
}
.bg-yellow-dark{
    background: #fcbd13;
}
.bg-yellow-light{
    background: var(--yellow-light);
}
.wine{
    color: var(--wine);
}
.v-align-text {
    display: inline-block;
    vertical-align: middle;
}
.txt-green{
    color: var(--green);
    font-weight: 600;
}
.txt-1{
    font-size: 1rem;
    font-weight: 600;
}
.txt-12{
    font-size: 1.2rem;
    font-weight: 600;
}
.txt-14{
    font-size: 1.4rem;
    font-weight: 600;
}
.txt-16{
    font-size: 1.6rem;
    font-weight: 600;
}

.arrow {
    font-size: 1.2rem;
}

/* --- NAVBAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 8%;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent-color);
}

.logo span {
    color: var(--primary-teal);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
}

.btn-login {
    background: transparent;
    border: none;
    font-weight: 600;
    cursor: pointer;
    margin-right: 15px;
}

.btn-register {
    background: var(--primary-teal);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
    display: flex;
    align-items: center;
    padding: 60px 8%;
    min-height: 80vh;
    background-image: url('assets/images/bg-amarelo.jpg');
    background-size: cover;
    background-position: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.2rem;
    color: var(--primary-teal);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--accent-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-gray);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.1));
}

/* --- SERVICES --- */
.services {
    padding: 80px 5%;
    background-color: #fff;
}

.service-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.service-card {
    width: 180px;
    height: 200px;
    background: white;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
}

.border-green {
    border: 4px solid var(--light-green);
}

.border-yellow {
    border: 4px solid var(--light-yellow);
}

.service-card .icon {
    font-size: 45px;
    margin-bottom: 15px;
}

.service-card p {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

/* --- ABOUT US --- */
.about-us {
    padding: 100px 10%;
    background-color: #fff;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image-wrapper {
    position: relative;
    flex: 1;
}

.about-image-wrapper .blob-bg {
    position: absolute;
    width: 110%;
    height: 110%;
    background: #e1f1f3;
    top: -5%;
    left: -5%;
    z-index: 1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.dog-img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 25px;
}

.video-btn {
    position: absolute;
    top: -10px;
    right: 20px;
    z-index: 3;
    background: var(--primary-teal);
    color: white;
    padding: 15px 25px;
    border-radius: 40px 40px 40px 5px;
    text-align: center;
    cursor: pointer;
}

.about-content {
    flex: 1.2;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-content p {
    color: var(--text-gray);
    margin-bottom: 35px;
}

/* --- PRODUCTS --- */
.products-section {
    padding: 80px 8%;
    background-color: #fff;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.subtitle {
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

.subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-teal);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.product-item {
    text-align: center;
}

.image-container {
    position: relative;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-item .blob-bg {
    position: absolute;
    width: 180px;
    height: 140px;
    z-index: 1;
    bottom: 20px;
    border-radius: 40% 60% 70% 30%;
}

.pink-blob {
    background-color: #ffe4e9;
}

.yellow-blob {
    background-color: #fff4d1;
}

.blue-blob {
    background-color: #e2f1f8;
}

.product-img {
    position: relative;
    z-index: 2;
    max-height: 220px;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
}

.btn-buy-outline {
    background: transparent;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
    padding: 10px 35px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-buy-outline:hover {
    background: var(--primary-teal);
    color: white;
}

/* --- CTA BANNER --- */
.cta-banner {
    background-color: var(--bg-light-blue);
    padding: 100px 8%;
    overflow: hidden;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.cta-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.person-dog-img {
    max-width: 100%;
    position: relative;
    z-index: 2;
}

.floating-icon {
    position: absolute;
    z-index: 1;
    font-size: 2rem;
    opacity: 0.3;
    color: #4eb1ba;
    filter: grayscale(1);
}

.icon-paw {
    top: 10%;
    left: 0;
}

.icon-ball {
    top: 40%;
    left: -10%;
}

.icon-collar {
    top: 15%;
    right: 0;
}

.icon-bone {
    bottom: 20%;
    right: -5%;
}

/* --- TESTIMONIALS --- */
.testimonials {
    padding: 100px 8%;
    background-color: var(--bg-light);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #4eb1ba;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    border-radius: 30px;
    overflow: hidden;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.card-image {
    height: 280px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-radius: 30px 30px 0 0;
}

.bg-yellow {
    background-color: #fff0b3;
}

.bg-pink {
    background-color: #f7b9c4;
}

.bg-purple {
    background-color: #d8c3f7;
}

.card-content {
    background-color: var(--primary-teal);
    padding: 35px;
    text-align: center;
    color: var(--text-white);
}

.card-content h3 {
    color: var(--star-yellow);
    margin-bottom: 10px;
}

.rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
}

.bone {
    font-size: 1.2rem;
}

.bone.fill {
    color: var(--star-yellow);
}

.bone.outline {
    color: transparent;
    -webkit-text-stroke: 1px var(--star-yellow);
}

/* --- FOOTER --- */
.main-footer {
    background-color: var(--bg-footer);
    padding: 100px 8% 30px;
    border-top: 1px solid #eee;
}

.affiliate-section {
    text-align: center;
    margin-bottom: 80px;
}

.newsletter-card {
    background: white;
    max-width: 650px;
    margin: 0 auto;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.input-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.input-group input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px;
    font-size: 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 60px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-circle {
    width: 45px;
    height: 45px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #444;
    font-weight: bold;
}

.phone {
    color: var(--primary-teal);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-nav a {
    text-decoration: none;
    color: var(--text-muted);
    margin-left: 20px;
    transition: 0.2s;
}

.footer-nav a:hover {
    color: var(--primary-teal);
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {

    .hero,
    .about-container,
    .cta-container,
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .navbar nav,
    .auth-buttons {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

    .service-card {
        width: calc(50% - 20px);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .input-group {
        flex-direction: column;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}


/* Container principal */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Linha (Wrapper do Grid) */
.row {
    display: grid;
    grid-template-columns: repeat(12, 1fr); /* 12 colunas iguais */
    gap: 15px; /* Espaçamento entre colunas */
    margin-bottom: 15px;
}

/* Estilização visual das colunas */
.col {
    padding: 1rem;
}

/* Classes de tamanho (Semelhante ao Bootstrap) */
.col-1  { grid-column: span 1; }
.col-2  { grid-column: span 2; }
.col-3  { grid-column: span 3; }
.col-4  { grid-column: span 4; }
.col-5  { grid-column: span 5; }
.col-6  { grid-column: span 6; }
.col-8  { grid-column: span 8; }
.col-9  { grid-column: span 9; }
.col-10  { grid-column: span 10; }
.col-11  { grid-column: span 11; }
.col-12 { grid-column: span 12; }
.grid-5-colunas {
    display: grid;
    /* Cria 5 colunas de tamanhos iguais */
    grid-template-columns: repeat(5, 1fr); 
    /* Espaço entre as colunas (ajuste como quiser) */
    gap: 10px; 
  }
  
  /* Apenas para visualização */
  .coluna {
    background-color: #f5b91a;
    /*padding: 20px;*/
    text-align: center;
    border: 1px solid #333;
  }

.center{
    text-align: center;
}
.fw-600{ font-weight: 600; }
.fw-800{ font-weight: 800; }
.fw-900{ font-weight: 900; }

.v-align{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.instagram-container {
    flex-direction: column;
    padding: 40px;
    background-color: #fff;
    margin: 20px auto;
    max-width: 500px; /* Largura de um post de celular */
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.instagram-frame {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

/* Responsividade Básica: Empilhar em telas pequenas */
@media (max-width: 700px) {
    .row {
        grid-template-columns: 1fr;
    }
    .col-1, .col-2, .col-3, .col-4, .col-6, .col-8, .col-12 {
        /*grid-column: span 1;*/
        width: 100%;
    }

    .hide-sm {
        display: none !important;
    }
    
    .grid-5-colunas {
        /* No celular: muda para 1 coluna (ou 2, se preferir) */
        grid-template-columns: repeat(1, 1fr); 
    }
    .instagram-container {
        width: 90%;
    }
}

@media (min-width: 700px) {
    .hide-lg {
        display: none !important;
    }
}