/* ============================================
   Dra. Samla Cristie - Veterinary Landing Page
   Country Veterinary Theme
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --green-deep: #2d5016;
    --green-mid: #3d6b22;
    --green-light: #5a8a3c;
    --green-pale: #e8f0e2;
    --brown-dark: #5c3a1e;
    --brown-mid: #8B4513;
    --brown-warm: #a0522d;
    --brown-light: #c8956c;
    --cream: #FFF8DC;
    --cream-soft: #faf5e8;
    --gold: #c9a84c;
    --gold-light: #e8d48c;
    --white: #ffffff;
    --offwhite: #fdfcf8;
    --text-dark: #2c2416;
    --text-mid: #5a4e3e;
    --text-light: #8a7e6e;
    --border: #e5ddd0;
    --shadow-sm: 0 2px 8px rgba(44,36,22,0.08);
    --shadow-md: 0 4px 20px rgba(44,36,22,0.12);
    --shadow-lg: 0 8px 40px rgba(44,36,22,0.16);
    --shadow-xl: 0 16px 60px rgba(44,36,22,0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Great Vibes', cursive;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--offwhite);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background: var(--green-deep);
    color: var(--white);
    border-color: var(--green-deep);
}

.btn-primary:hover {
    background: var(--green-mid);
    border-color: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--green-deep);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 16px 0;
}

.navbar.scrolled {
    background: rgba(45, 80, 22, 0.96);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-links a {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 50px;
    position: relative;
    letter-spacing: 0.2px;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.15);
}

.nav-intranet {
    border: 1px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem !important;
    opacity: 0.75;
    transition: opacity 0.2s, background 0.2s;
}
.nav-intranet:hover {
    opacity: 1;
    background: rgba(255,255,255,0.15) !important;
}

.nav-instagram {
    font-size: 1.25rem !important;
    opacity: 0.85;
    transition: opacity 0.3s, transform 0.3s, color 0.3s !important;
}
.nav-instagram:hover {
    opacity: 1;
    transform: scale(1.15);
    color: #E1306C !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 4px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1a1a1a;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(45, 80, 22, 0.85) 0%,
        rgba(44, 36, 22, 0.7) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
}

.hero-image-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(30%);
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 700px;
    padding: 0 20px;
}

.hero-tag {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-light);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-tag i {
    font-size: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 10px;
    text-shadow: 2px 4px 12px rgba(0,0,0,0.3);
}

.hero-registration {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gold-light);
    font-style: italic;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Section Common ---------- */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--green-deep);
    background: var(--green-pale);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.title-divider span {
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.title-divider i {
    color: var(--gold);
    font-size: 1.1rem;
}

.section-subtitle {
    color: var(--text-mid);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- Sobre ---------- */
.sobre {
    background: var(--white);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-images {
    position: relative;
}

.sobre-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.sobre-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sobre-img-main:hover img {
    transform: scale(1.03);
}

.sobre-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.sobre-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sobre-text h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--green-deep);
    margin-bottom: 20px;
    font-style: italic;
}

.sobre-text p {
    color: var(--text-mid);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.sobre-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--green-pale);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--green-deep);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ---------- Serviços ---------- */
.servicos {
    background: var(--cream-soft);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.servico-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.servico-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.servico-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.servico-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.servico-card:hover .servico-img img {
    transform: scale(1.08);
}

.servico-badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 50px;
    height: 50px;
    background: var(--green-deep);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.servico-content {
    padding: 24px;
}

.servico-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.servico-content p {
    color: var(--text-mid);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-servico {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-deep);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.btn-servico:hover {
    border-color: var(--green-deep);
}

.btn-servico i {
    transition: transform 0.3s ease;
}

.btn-servico:hover i {
    transform: translateX(4px);
}

/* ---------- CTA Section ---------- */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    align-items: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(45, 80, 22, 0.92) 0%,
        rgba(92, 58, 30, 0.88) 100%
    );
    z-index: 2;
}

.cta-bg-img {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
    backdrop-filter: blur(6px);
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 32px;
    opacity: 0.95;
    line-height: 1.7;
}

/* ---------- Equipe ---------- */
.equipe {
    background: var(--white);
}

.equipe-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.equipe-intro p {
    color: var(--text-mid);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.equipe-card {
    background: var(--cream-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.equipe-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.equipe-img {
    height: 220px;
    overflow: hidden;
}

.equipe-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.equipe-card:hover .equipe-img img {
    transform: scale(1.05);
}

.equipe-info {
    padding: 20px;
}

.equipe-info h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.equipe-role {
    font-size: 0.75rem;
    color: var(--green-deep);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.equipe-info p {
    color: var(--text-mid);
    font-size: 0.82rem;
    margin-top: 10px;
    line-height: 1.6;
}

.equipe-especialidades {
    background: var(--green-deep);
    border-radius: var(--radius-xl);
    padding: 40px;
    color: var(--white);
}

.equipe-especialidades h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.equipe-especialidades h3 i {
    color: var(--gold);
}

.especialidades-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.especialidade-item {
    background: rgba(255,255,255,0.1);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.especialidade-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.especialidade-item i {
    color: var(--gold-light);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* ---------- Depoimentos ---------- */
.depoimentos {
    background: var(--cream-soft);
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.google-stars i {
    color: #fbbc05;
    font-size: 1.1rem;
}

.google-score {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.google-count {
    color: var(--text-light);
    font-size: 0.85rem;
}

.google-icon {
    color: #4285f4;
    font-size: 1.3rem;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.depoimento-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.depoimento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.depoimento-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.depoimento-header h4 {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.depoimento-stars i {
    color: #fbbc05;
    font-size: 0.75rem;
}

.depoimento-date {
    font-size: 0.72rem;
    color: var(--text-light);
}

.depoimento-card p {
    color: var(--text-mid);
    font-size: 0.88rem;
    line-height: 1.65;
    font-style: italic;
}

/* ---------- Blog ---------- */
.blog {
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.blog-card {
    background: var(--cream-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--green-deep);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content {
    padding: 24px;
}

.blog-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-mid);
    font-size: 0.85rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 0.78rem;
    color: var(--text-light);
}

.blog-meta i {
    margin-right: 5px;
}

.blog-cta {
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--brown-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 50px 40px;
    text-align: center;
    color: var(--white);
}

.blog-cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.blog-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.blog-cta p {
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto 28px;
    opacity: 0.92;
    line-height: 1.7;
}

/* ---------- FAQ ---------- */
.faq {
    background: var(--cream-soft);
}

.faq-categories {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-category h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--green-deep);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--green-pale);
}

.faq-category h3 i {
    color: var(--brown-warm);
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.faq-item.active {
    box-shadow: var(--shadow-sm);
    border-color: var(--green-light);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 18px 24px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--green-deep);
}

.faq-question i {
    color: var(--green-deep);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-mid);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ---------- Contato ---------- */
.contato {
    background: var(--white);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contato-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contato-icon {
    width: 54px;
    height: 54px;
    background: var(--green-pale);
    color: var(--green-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contato-item h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contato-item p,
.contato-item a {
    color: var(--text-mid);
    font-size: 0.88rem;
    line-height: 1.5;
}

.contato-item a:hover {
    color: var(--green-deep);
}

.contato-form {
    background: var(--cream-soft);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

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

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

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-deep);
    box-shadow: 0 0 0 3px var(--green-pale);
}

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

/* ---------- Footer ---------- */
.footer {
    background: var(--green-deep);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 4px;
}

.footer-tagline {
    font-size: 0.78rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.footer-brand p:last-of-type {
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-hours h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

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

.footer-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 6px;
}

.footer-contact p,
.footer-hours p {
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i,
.footer-hours i {
    color: var(--gold-light);
    width: 18px;
    text-align: center;
}

.footer-emergency {
    margin-top: 10px;
    color: var(--gold-light) !important;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
}

/* ---------- WhatsApp Float ---------- */
.float-buttons {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
    align-items: center;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
    position: relative;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.instagram-float {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(214, 36, 159, 0.4);
    transition: var(--transition);
    animation: instagram-pulse 2s infinite;
}

.instagram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(214, 36, 159, 0.5);
}

@keyframes instagram-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(214, 36, 159, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(214, 36, 159, 0.2), 0 0 0 12px rgba(214, 36, 159, 0.1);
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: var(--white);
    color: var(--text-dark);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--white);
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2), 0 0 0 12px rgba(37, 211, 102, 0.1);
    }
}

/* ---------- Reveal animations ---------- */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .equipe-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .especialidades-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    /* Navbar mobile */
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--green-deep);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 4px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 20px rgba(0,0,0,0.2);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 0.95rem;
        padding: 14px 20px;
        border-radius: var(--radius-sm);
    }

    .nav-links a:hover {
        background: rgba(255,255,255,0.1);
    }

    /* Hero */
    .hero-description {
        font-size: 0.92rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Sobre */
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 150px;
        height: 150px;
        margin-top: -60px;
        margin-left: auto;
    }

    .sobre-stats {
        justify-content: center;
    }

    /* Serviços */
    .servicos-grid {
        grid-template-columns: 1fr;
    }

    /* Equipe */
    .equipe-grid {
        grid-template-columns: 1fr;
    }

    .especialidades-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .equipe-especialidades {
        padding: 30px 20px;
    }

    /* Depoimentos */
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-cta {
        padding: 36px 24px;
    }

    /* Contato */
    .contato-grid {
        grid-template-columns: 1fr;
    }

    .contato-form {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* CTA */
    .cta-section {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 50px 0;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .sobre-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .especialidades-list {
        grid-template-columns: 1fr;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .float-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    .whatsapp-float {
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }
    .instagram-float {
        display: flex;
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }
}

/* ---------- Blog Card Links ---------- */
.blog-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.blog-card-link:hover {
    color: inherit;
}

/* ---------- Clientes (Parceiros) ---------- */
.clientes {
    background: var(--white);
}

.clientes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cliente-card {
    background: var(--cream-soft);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.cliente-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-pale);
}

.cliente-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-sm);
}

.cliente-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.cliente-type {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--green-deep);
    background: var(--green-pale);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.cliente-card p {
    color: var(--text-mid);
    font-size: 0.84rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.cliente-location {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
}

.cliente-location i {
    color: var(--brown-mid);
    margin-right: 4px;
}

@media (max-width: 1024px) {
    .clientes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .clientes-grid {
        grid-template-columns: 1fr;
    }
}
