/* Reset de Estilos Básicos */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #444;
    background-color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Header & Navbar com Gradiente Idêntico ao Vídeo */
.header-banner {
    background: linear-gradient(to right, #ffd166, #f78da7, #b55fe6);
    padding: 25px 20px;
    text-align: center;
    color: white;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: 'Georgia', serif;
    text-transform: uppercase;
}

.navbar {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.navbar a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.navbar a:hover, .navbar a.active {
    color: #ffffff;
    border-bottom: 2px solid white;
}

/* Seção de Ilustrações dos Bichinhos */
.banner-animals {
    background-color: #ffffff;
    padding: 40px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.animals-container {
    max-width: 1100px;
    width: 100%;
}

.watercolor-illustration img {
    width: 100%;
    height: auto;
    display: block;
}

/* Seção do Catálogo */
.catalogo-section {
    background-color: #faf7f2; /* Off-white de fundo do catálogo */
    padding: 60px 20px;
    text-align: center;
}

.catalogo-title {
    color: #e25c97;
    font-size: 36px;
    font-family: 'Georgia', serif;
    margin-bottom: 40px;
    font-style: italic;
    font-weight: bold;
}

.catalogo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.catalogo-item {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 20px 10px;
    text-decoration: none;
    color: #555;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.catalogo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
}

.item-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.catalogo-item p {
    font-size: 14px;
    font-weight: 500;
}

/* Seção Destaques (Fundo Vermelho Sólido) */
.destaques-section {
    background-color: #e63956; /* Vermelho/Rosa escuro do vídeo */
    padding: 60px 40px;
    color: white;
    position: relative;
}

.destaques-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto 30px auto;
}

.destaques-title {
    font-size: 32px;
    font-family: 'Georgia', serif;
    font-style: italic;
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.control-btn {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.control-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.destaques-carousel-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}

.destaques-carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.destaque-card {
    background-color: white;
    color: #333;
    min-width: 250px;
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.card-image-placeholder {
    background-color: #a3c9a8; /* Cor esverdeada simulando a foto da decoração */
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}

.card-caption {
    padding: 15px;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    background-color: #ffffff;
}

/* Seção Quem Sou Eu */
.quem-sou-eu-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

.apresentacao-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 20px;
    font-weight: bold;
}

.apresentacao-text {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    font-family: 'Georgia', serif;
}

/* Seção de Orçamento (Igual à Imagem Fornecida) */
.orcamento-section {
    background: linear-gradient(135deg, #fce4d6 0%, #ebdcf0 100%);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.orcamento-card {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.orcamento-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.orcamento-header h2 {
    font-size: 24px;
    color: #333;
    font-weight: 600;
}

.heart-icon {
    font-size: 24px;
}

.orcamento-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #4a4a4a;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background-color: #ffffff;
    font-size: 15px;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus, .form-group select:focus {
    border-color: #a5b4fc;
}

.submit-btn {
    background-color: #7dd3fc;
    color: #0369a1;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 10px;
    text-align: center;
}

.submit-btn:hover {
    background-color: #38bdf8;
}

.form-disclaimer {
    font-size: 12px;
    color: #777;
    margin-top: 12px;
    text-align: left;
}

/* Badges inferiores */
.badges-container {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.badge-verde { border: 1px solid #bbf7d0; color: #166534; }
.badge-rosa { border: 1px solid #fbcfe8; color: #9d174d; }
.badge-artesanal { border: 1px solid #fed7aa; color: #9a3412; }

/* Footer / Rodapé Ondulado */
.site-footer {
    background-color: #fbd475; /* Fundo Amarelo Pastel da imagem */
    color: #2b4e54; /* Texto em tom azul escuro/teal */
    position: relative;
    padding: 0 0 30px 0;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-waves {
    position: relative;
    width: 100%;
    line-height: 0;
    margin-top: -1px;
}

.footer-waves svg {
    position: relative;
    display: block;
    width: 100%;
    height: 120px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 20px 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    font-family: 'Fredoka One', 'Georgia', serif;
    font-weight: bold;
    font-size: 20px;
    color: #2b4e54;
    margin-bottom: 20px;
    text-transform: none;
}

.brand-column .footer-brand-title {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #1f3f45;
}

.brand-column .footer-brand-subtitle {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 16px;
    color: #436d75;
    margin-top: 10px;
}

.contact-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #436d75;
    margin-bottom: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #436d75;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 500;
    transition: color 0.2s, transform 0.2s;
}

.social-link:hover {
    color: #1f3f45;
    transform: translateX(3px);
}

.social-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.instagram-icon {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><radialGradient id='rg' r='150%' cx='30%' cy='107%'><stop stop-color='%23fdf497' offset='0%'/><stop stop-color='%23fdf497' offset='5%'/><stop stop-color='%23fd5949' offset='45%'/><stop stop-color='%23d6249f' offset='60%'/><stop stop-color='%23285AEB' offset='90%'/></radialGradient><rect width='24' height='24' rx='6' fill='url(%23rg)'/><path d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.051.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 1 0 0 12.324 6.162 6.162 0 0 0 0-12.324zM12 16a4 4 0 1 1 0-8 4 4 0 0 1 0 8zm6.406-11.845a1.44 1.44 0 1 0 0 2.881 1.44 1.44 0 0 0 0-2.881z' fill='%23fff'/></svg>");
}

.facebook-icon {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='12' fill='%231877f2'/><path d='M14.636 12.441l.542-3.537h-3.393V6.611c0-.97.475-1.916 2.001-1.916h1.548V1.684A20.932 20.932 0 0012.585 1.5c-2.79 0-4.622 1.69-4.622 4.76v2.644H4.851v3.537h3.112v8.559h3.84v-8.559h2.833z' fill='%23fff'/></svg>");
}

.whatsapp-icon {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='12' fill='%2325d366'/><path d='M12.012 3c-4.958 0-9 4.042-9 9 0 1.584.412 3.125 1.2 4.484L3 21l4.633-1.213A8.955 8.955 0 0012.012 21c4.958 0 9-4.042 9-9s-4.042-9-9-9zm4.862 12.288c-.2.562-1 1.033-1.378 1.1-.342.062-.779.112-2.283-.513-1.921-.795-3.138-2.754-3.233-2.883-.1-.129-.779-1.037-.779-1.979 0-.942.492-1.404.667-1.583.175-.18.375-.225.5-.225h.358c.121 0 .283.004.408.3.133.317.454 1.108.496 1.196.042.088.071.188.012.304-.058.117-.088.188-.175.292-.088.104-.183.233-.262.312-.088.088-.18.184-.075.363.104.18.467.771.996 1.242.683.608 1.262.8 1.442.883.18.083.283.067.388-.054.104-.121.454-.529.575-.708.121-.18.242-.15.408-.088.167.062 1.054.496 1.238.588.183.092.304.138.35.217.042.079.042.454-.158 1.017z' fill='%23fff'/></svg>");
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid rgba(43, 78, 84, 0.15);
    padding-top: 20px;
    font-size: 12px;
    color: #436d75;
}

/* Admin link no footer */
.admin-link {
    margin-top: 8px;
    padding-top: 6px;
}

.admin-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}


/* Estilos da nova página: Quem nós somos */
.quem-somos-body {
    background-color: #bfe5e7; /* Cor de fundo azul claro da imagem */
    color: #2b4e54;
    overflow-x: hidden;
}

.quem-somos-main {
    padding: 60px 40px;
}

.quem-somos-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.quem-somos-text-column {
    flex: 1.2;
    text-align: left;
}

.quem-somos-image-column {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quem-somos-title {
    font-size: 38px;
    font-family: 'Fredoka One', 'Georgia', serif;
    font-weight: bold;
    font-style: italic;
    color: #2b4e54;
    margin-bottom: 30px;
}

.quem-somos-subtitle {
    font-size: 20px;
    font-family: 'Fredoka One', 'Georgia', serif;
    font-weight: bold;
    font-style: italic;
    color: #2b4e54;
    margin-top: 30px;
    margin-bottom: 15px;
}

.quem-somos-paragraph {
    font-size: 16px;
    line-height: 1.7;
    color: #3b666e;
    margin-bottom: 20px;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.quem-somos-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.quem-somos-list li {
    font-size: 16px;
    line-height: 1.7;
    color: #3b666e;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.quem-somos-list li::before {
    content: "•";
    color: #2b4e54;
    font-weight: bold;
    font-size: 22px;
    position: absolute;
    left: 0;
    top: -2px;
}

.quem-somos-highlight {
    font-size: 17px;
    font-weight: bold;
    line-height: 1.7;
    color: #2b4e54;
    font-family: 'Segoe UI', system-ui, sans-serif;
    margin-top: 25px;
}

.quem-somos-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Responsividade Geral */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .destaques-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .quem-somos-container {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .quem-somos-text-column {
        width: 100%;
    }
    
    .quem-somos-image-column {
        width: 100%;
    }
    
    .quem-somos-img {
        max-width: 100%;
    }
}
