/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cor-principal: #998675;      /* Castanho/Taupe */
    --cor-secundaria: #C7B199;     /* Bege */
    --cor-clara: #F0E5D5;          /* Creme claro */
    --cor-texto: #231F20;          /* Preto suave */
    --cor-texto-claro: #6B6560;    /* Castanho claro para texto secundário */
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #F0E5D5 0%, #f8f5f0 100%);
    min-height: 100vh;
    color: var(--cor-texto);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Container Principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 60px 20px 80px;
    max-width: 800px;
    margin: 0 auto;
}

.logo-container {
    margin-bottom: 50px;
    animation: fadeIn 1s ease;
}

.logo {
    width: 100%;
    max-width: 380px;
    height: auto;
    filter: none;
}

h1 {
    font-size: 3.5em;
    font-weight: 400;
    color: var(--cor-principal);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.tagline {
    font-size: 1.1em;
    color: var(--cor-texto-claro);
    font-weight: 500;
    margin-bottom: 35px;
    font-style: italic;
}

.hero-text {
    font-size: 1.15em;
    line-height: 1.8;
    color: var(--cor-texto-claro);
    max-width: 650px;
    margin: 0 auto;
}

/* Content Section */
.content-section {
    background: white;
    border-radius: 30px;
    padding: 70px 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 70px;
}

.value-item {
    text-align: center;
}

.value-item .icon {
    font-size: 2.5em;
    display: block;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 1.1em;
    color: var(--cor-principal);
    margin-bottom: 10px;
    font-weight: 600;
}

.value-item p {
    font-size: 0.95em;
    color: var(--cor-texto-claro);
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    margin-bottom: 50px;
}

.contact-section h2 {
    font-size: 2em;
    color: var(--cor-principal);
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.contact-intro {
    text-align: center;
    color: var(--cor-texto-claro);
    margin-bottom: 40px;
    font-size: 1.05em;
}

/* Formulário */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--cor-texto);
    font-size: 0.9em;
}

.form-input {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #E8E1D8;
    border-radius: 15px;
    font-size: 1em;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background: #FAFAF8;
    color: var(--cor-texto);
}

.form-input:focus {
    outline: none;
    border-color: var(--cor-secundaria);
    background: white;
    box-shadow: 0 0 0 3px rgba(199, 177, 153, 0.1);
}

.form-input::placeholder {
    color: #B8AFA3;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.submit-btn {
    width: 100%;
    padding: 16px 40px;
    background: var(--cor-principal);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.05em;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #8A7766;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(153, 134, 117, 0.25);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Mensagens */
.success-message,
.error-message {
    display: none;
    padding: 16px 24px;
    border-radius: 15px;
    margin-top: 25px;
    font-weight: 500;
    font-size: 0.95em;
    text-align: center;
}

.success-message {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #A5D6A7;
}

.error-message {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #EF9A9A;
}

.success-message.show,
.error-message.show {
    display: block;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Info */
.contact-info {
    padding-top: 40px;
    border-top: 1px solid #E8E1D8;
    margin-top: 50px;
}

.info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #FAFAF8;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: var(--cor-clara);
    transform: translateY(-2px);
}

.info-icon {
    font-size: 1.5em;
    flex-shrink: 0;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-size: 0.85em;
    color: var(--cor-texto-claro);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item a {
    color: var(--cor-principal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.info-item a:hover {
    color: #8A7766;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #E8E1D8;
}

.footer-text {
    color: var(--cor-texto-claro);
    font-size: 0.95em;
    line-height: 1.6;
}

.footer-text strong {
    color: var(--cor-principal);
    font-weight: 600;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    .hero-section {
        padding: 40px 15px 60px;
    }
    
    h1 {
        font-size: 2.5em;
    }
    
    .content-section {
        padding: 50px 30px;
        border-radius: 25px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 50px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .logo {
        max-width: 220px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }
    
    .tagline {
        font-size: 1em;
    }
    
    .hero-text {
        font-size: 1.05em;
    }
    
    .content-section {
        padding: 40px 25px;
    }
    
    .contact-section h2 {
        font-size: 1.6em;
    }
}

/* =========================================
   NOVAS REGRAS (Hero Zoom + Segurança)
   ========================================= */

/* Aumenta a imagem do cão em 15% */
#hero .hero-img img {
    transform: scale(1.15); /* Aumenta o tamanho */
    transition: transform 0.3s ease;
    /* Ajuste fino para garantir que não corta */
    transform-origin: center center;
}

/* Impede o download/arrastar de TODAS as imagens */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

/* Botão WhatsApp Fixo e Protegido */
.whatsapp-float {
    position: fixed !important;
    width: 60px !important;
    height: 60px !important;
    bottom: 30px !important;
    right: 30px !important;
    background-color: #25d366 !important; /* Verde oficial WhatsApp */
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 99999 !important;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2) !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e !important;
}

/* Força o ícone a não crescer */
.whatsapp-icon {
    width: 35px !important;
    height: 35px !important;
    display: block !important;
    margin: 0 !important;
    pointer-events: none;
}

/* Ajuste para Telemóveis */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        bottom: 20px !important;
        right: 20px !important;
    }
    .whatsapp-icon {
        width: 30px !important;
        height: 30px !important;
    }
}
