/* Critical CSS inline para performance máxima */
:root {
    --primary: #4a0082;
    --secondary: #9932cc;
    --accent: #d53f8c;
    --light: #f8f9fa;
    --dark: #1a0033;
    --white: #ffffff;
    --success-color: #2ecc71;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
    font-display: swap;
}

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

/* Header */
header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--white);
}

.nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.nav a:hover, .nav a.active {
    background: rgba(255,255,255,0.2);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1 )"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

/* 
   Correção de Acessibilidade: Aumenta o contraste do botão primário.
   Esta regra escurece a cor de fundo original (--accent) para garantir 
   que o texto branco seja legível, atendendo às diretrizes de WCAG.
*/
.btn-primary {
    background: #4a0082;
        color: white;
}

/* 
   Ajuste opcional para o hover, para manter a consistência.
   Escurece um pouco mais o botão ao passar o mouse.
*/
.btn-primary:hover {
    background: #faafd7; /* Um tom ainda mais escuro para o efeito hover */
}



.btn-primary2 {
    background: #f7f5f6;
    color: black
    box-shadow: 0 4px 15px rgba(213, 63, 140, 0.3);
}

.btn-primary2:hover {
    background: #f78bc2;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(213, 63, 140, 0.4);
}



.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--white);
}

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

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-content h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-content h3 {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.credentials {
    margin-top: 20px;
}

.credential {
    background: #f0e6f7;
    color: var(--primary);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    margin: 5px;
    font-weight: 500;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--light);
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
    color: var(--primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0

10px 30px rgba(0,0,0,0.05);
    border-top: 4px solid var(--accent);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    color: var(--primary);
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--primary);
}

.benefit-item p {
    color: var(--dark);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--white);
}

.services h2 {
    text-align: center;
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    padding: 30px;
    background: var(--light);
    border-radius: 15px;
    border-left: 5px solid var(--accent);
}

.service-item h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--light);
    text-align: center;
}

.pricing h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.pricing-card.featured {
    border: 3px solid var(--accent);
    transform: scale(1.05);
}

.pricing-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 20px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-option {
    background: var(--white);
    color: var(--dark);
    padding: 40px 30px;
    border-radius: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.contact-option:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.contact-option h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--white);
}

.faq h2 {
    text-align: center;
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.faq-item {
    background: var(--light);
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    background: var(--primary);
    color: var(--white);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 25px;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--light);
}
.testimonials h2 {
    text-align: center;
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 5px solid var(--accent);
}
.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}
.testimonial-author {
    font-weight: bold;
    color: var(--primary);
}

/* Estilos de Artigos (Adaptados do Clube Empreendedoras) */
.article-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 3 colunas em desktop */
    margin-top: 3rem;
}

.article-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%; /* Garante que todos os cards tenham a mesma altura */
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content {
    padding: 1.5rem;
    flex-grow: 1; /* Permite que o conteúdo se expanda */
    display: flex;
    flex-direction: column;
}

.article-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent); /* Usando a cor de destaque do Ale Campos */
    color: var(--white);
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.article-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary); /* Usando a cor primária do Ale Campos */
    line-height: 1.3;
}

.article-title a {
    color: var(--primary);
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: var(--accent);
}

.article-excerpt {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
    flex-grow: 1; /* Empurra o meta-data para baixo */
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #999;
    margin-top: auto; /* Alinha o meta-data na parte inferior */
}

.article-author {
    font-weight: 500;
}

.article-read-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.article-reading-time {
    font-size: 0.875rem;
    font-weight: 500;
    color: #555;
    white-space: nowrap;
}

.btn-read-article {
    background-color: var(--accent); /* Botão com cor de destaque */
    color: white;
    padding: 0.2rem 0.4rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 300;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.btn-read-article:hover {
    background-color: var(--primary); /* Hover com cor primária */
}

/* Trust Indicators */
.trust-section {
    padding: 40px 0;
    background: var(--white);
}
.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
    font-weight: 500;
}
.trust-item i {
    color: var(--primary);
    font-size: 1.5rem;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
    position: relative;
}

footer a {
    color: var(--accent);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.footer-dev-credit {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-dev-credit a {
    color: var(--white);
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1001;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 20px 0;
}
.modal-content {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalFade 0.3s ease-in-out;
    max-height: 90vh;
    overflow-y: auto;
}
@keyframes modalFade {
    from {opacity: 0; transform: translateY(-30px);}
    to {opacity: 1; transform: translateY(0);}
}
.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #777;
}
.form-group {
    margin-bottom: 20px;
}
.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}
.form-control:focus {
    border-color: var(--primary);
    outline: none;
}
textarea.form-control {
    min-height: 120px;
    resize: vertical;
}
.btn-block {
    display: block;
    width: 100%;
}
.success-message {
    display: none;
    background-color: var(--success-color);
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

/* Estilo para o botão flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.25);
    z-index: 1000;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
.whatsapp-float i {
    margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav {
        justify-content: center;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .pricing-card.featured {
        transform: none;
    }

    .footer-dev-credit {
        position: static;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .about-content h2,
    .benefits h2,
    .services h2,
    .pricing h2,
    .contact h2,
    .faq h2,
    .testimonials h2 {
        font-size: 2rem;
    }
}

/* Performance optimizations */
img {
    max-width: 100%;
    height: auto;
}

.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy.loaded {
    opacity: 1;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles */
.btn:focus,
.nav a:focus,
.contact-option:focus,
.faq-question:focus {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}


/* --- Cards styles (from ClubeEmpreendedoras, adapted) --- */
/* Articles cards styles (added) */
.articles-section{ padding:40px 20px; }
.section-title{ font-size:28px; text-align:center; margin-bottom:20px; color:var(--primary); }
.cards-grid{ display:grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap:20px; align-items:start; }
.card{ background: var(--white); border-radius:14px; overflow:hidden; box-shadow:0 8px 24px rgba(0,0,0,0.06); display:flex; flex-direction:column; transition:transform .25s, box-shadow .25s; }
.card:hover{ transform:translateY(-6px); box-shadow:0 14px 40px rgba(0,0,0,0.12); }
.card-media img{ width:100%; height:160px; object-fit:cover; display:block; }
.card-body{ padding:18px; display:flex; flex-direction:column; gap:12px; flex:1; }
.card-title{ font-size:18px; margin:0; color: var(--dark); }
.card-excerpt{ flex:1; margin:0; color: var(--dark); line-height:1.45; }
.card-cta{ align-self:flex-start; margin-top:8px; border-radius:10px; padding:1px 5px}

/* small screens tweak */
@media (max-width:600px){
  .card-media img{ height:140px; }
  .section-title{ font-size:22px; }
}


/* ===== Header Responsive Menu ===== */
.desktop-logo { display:block; }
.mobile-logo { display:none; }
.menu-toggle { display:none; flex-direction:column; gap:5px; cursor:pointer; }
.menu-toggle span { width:25px; height:3px; background:var(--white); transition:all .3s; }
@media (max-width:768px){
  .desktop-logo { display:none; }
  .mobile-logo { display:block; }
  .nav { display:none; flex-direction:column; width:100%; background:linear-gradient(135deg, var(--primary), var(--secondary)); text-align:center; padding:20px 0; }
  .nav.active { display:flex; }
  .menu-toggle { display:flex; }
  .header-content { flex-direction:row; justify-content:space-between; align-items:center; }
}

/* ===== Footer ===== */
footer { background:var(--dark); color:var(--white); text-align:center; padding:40px 0; }
.footer-social { margin-top:10px; display:flex; justify-content:center; gap:20px; }
.footer-social a { color:var(--accent); font-size:1.6rem; transition:color .3s; }
.footer-social a:hover { color:var(--white); }
@media (max-width:600px){
  .footer-content p{ font-size:0.9rem; }
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp-float { position:fixed; width:60px; height:60px; bottom:30px; right:30px; background-color:#25D366; color:#fff;
  border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:28px;
  box-shadow:0 4px 10px rgba(0,0,0,0.3); z-index:1000; transition:transform .3s ease; }
.whatsapp-float:hover{ transform:scale(1.1); }

/* ===== Modal reposition for WhatsApp float ===== */
.modal.whatsapp-active .modal-content { position:fixed; bottom:90px; right:40px; margin:0; width:340px; max-width:90%; animation:slideUp .4s ease-in-out; }
@keyframes slideUp { from{transform:translateY(50px); opacity:0;} to{transform:translateY(0); opacity:1;} }


/* ===== WhatsApp Modal Refined Style ===== */
.modal.whatsapp-active .modal-content {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 360px;
  max-width: 90%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  overflow: hidden;
  animation: slideUp .4s ease-in-out;
}

.modal-content header {
  background-color: #075E54;
  color: #fff;
  padding: 12px 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-content header i {
  font-size: 20px;
  margin-right: 8px;
}

.modal-content .modal-body {
  background: #fff;
  padding: 20px;
  text-align: left;
}

.modal-content .modal-body p {
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.modal-content form input, 
.modal-content form textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.modal-content form button {
  background-color: #25D366;
  color: white;
  width: 100%;
  border: none;
  border-radius: 25px;
  padding: 12px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.modal-content form button:hover {
  background-color: #1ebe5d;
}

/* ===== Floating WhatsApp Button Refined ===== */
.whatsapp-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  z-index: 1000;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ===== Leia Mais Button Style ===== */
.btn-leia-mais {
  display: inline-block;
  padding: 10px 24px;
  background-color: var(--primary);
  color: #fff;
  font-weight: 500;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-leia-mais:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
}


/* Estilos do Botão Flutuante e Modal do WhatsApp (Adaptados do Recanto do Céu) */

/* Botão Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

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

.whatsapp-float__icon {
    width: 28px;
    height: 28px;
}

.whatsapp-float__text {
    display: none; /* Oculto por padrão */
}

/* Modal do Formulário */
.whatsapp-form-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.whatsapp-form-content {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: whatsappSlideIn 0.4s ease-out;
    overflow: hidden;
}

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

.whatsapp-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-form-header h3 {
    margin: 0;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.whatsapp-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.whatsapp-close:hover {
    opacity: 1;
}

.whatsapp-form-body {
    padding: 25px;
}

.whatsapp-form-description {
    color: white;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 20px;
}

.whatsapp-form-group {
    margin-bottom: 15px;
}

.whatsapp-form-group label {
    display: block;
    color: white;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.whatsapp-form-group input,
.whatsapp-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid transparent;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.whatsapp-form-group input::placeholder,
.whatsapp-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.whatsapp-form-group input:focus,
.whatsapp-form-group textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.3);
    border-color: white;
}

.whatsapp-submit-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background-color: white;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.whatsapp-submit-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}
