/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #A2542A;
    --secondary-color: #7C8893;
    --dark-color: #0F1E15;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}
.nav-brand {
  display: flex;
  align-items: center;
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0,0,0,0.7); /* ou branco, conforme seu layout */
}


.nav-brand .logo {
  height: 50px;   /* logo principal */
  width: auto;
  object-fit: contain;
}

/* Segundo logo menor e com distância extra */
.nav-brand .logo-secondary {
  height: 20px;   /* menor que o primeiro */
  margin-left: 25px; /* distância extra do principal */
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 2rem 80px;
    
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-right: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #8a4624;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.about-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: var(--light-gray);
    transition: var(--transition);
}

.about-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.about-item h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-item p {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--light-gray);
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.carousel {
    position: relative;
    width: 100%;
    height: 500px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Plants Section */
.plants {
    padding: 100px 0;
    background: var(--white);
}

.plants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.plant-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.plant-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.plant-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.plant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.plant-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem;
}

.plant-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.plant-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.contact-item i {
    width: 20px;
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.privacy-link {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.privacy-link a {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

.privacy-link a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid #eee;
}

.modal-header h2 {
    color: var(--primary-color);
    margin: 0;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 2rem;
}

.modal-body h3 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.2rem;
}

.modal-body p,
.modal-body li {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--dark-color);
}

.modal-body ul {
    margin-left: 1rem;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-image {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    margin-top: 5%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}
/* Ajuste do header para mobile */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Ajuste do padding no conteúdo para compensar o header fixo */
#home {
  padding-top: 80px;
}

/* Ocultar botões em mobile */
@media (max-width: 768px) {
  .hero-buttons {
    display: none;
  }
  
  /* Reduzir tamanho dos textos */
  .hero-title {
    font-size: 1.8rem !important;
  }
  
  .hero-subtitle {
    font-size: 1.1rem !important;
  }
  
  .hero-description {
    font-size: 0.9rem !important;
  }
  
  /* Ajuste no layout da hero section */
  .hero {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content, .hero-image {
    width: 100% !important;
  }
  
  /* Menu mobile */
  .nav-links {
    display: none;
  }
  
  .mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 15px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }
  
  .mobile-menu.active {
    display: flex;
  }
  
  .mobile-menu a {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
  }
  
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
  }
  
  .nav-toggle span {
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
  }
}
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000; /* Alto z-index para ficar acima de tudo */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* Esconde a descrição em telas pequenas (mobile) */
@media (max-width: 768px) {
  .hero-description {
    display: none;
  }
}

.image-modal .modal-image {
    display: block;
    margin: 60px auto;
    max-width: 90%;
    max-height: 80vh;
    width: auto;
    height: auto;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from { transform: scale(0.9); }
    to { transform: scale(1); }
}

/* Evita que slides não-visíveis capturem cliques */
.carousel .carousel-slide {
  pointer-events: none;          /* não recebe clique por padrão */
  z-index: 1;                    /* camada padrão baixa */
}

/* Apenas o slide ativo recebe clique e fica acima */
.carousel .carousel-slide.active {
  pointer-events: auto;          /* permite clique só no ativo */
  z-index: 5;
}

/* Modal (se não tiver já) */
#imageModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.85);
  
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#imageModal img {
  max-width: 95%;
  max-height: 85%;
  object-fit: contain;
  border-radius: 8px;
}
#imageModal .image-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 32px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}


.image-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.image-close:hover {
    color: #bbb;
}
/* Estilos para desktop */
@media (min-width: 769px) {
  .nav-toggle, .mobile-menu {
    display: none;
  }
  
  .nav-links {
    display: flex;
  }
}

.image-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color:black;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.image-close:hover {
    color: var(--primary-color);
}

/* Zoomable Images */
.zoomable-image {
    cursor: zoom-in;
    transition: var(--transition);
}

.zoomable-image:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 1rem 60px;
    }
    
    .hero-content {
        margin-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .plants-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .carousel {
        height: 300px;
    }
    
    .plant-image {
        height: 250px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Estilos para a seção Hero - Mantendo cores existentes */
.hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zoomable-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.zoomable-image:hover {
    transform: scale(1.02);
}

/* Responsividade */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content, .hero-image {
        width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
}
       
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
       
        
        .section-header p {
            font-size: 1.2rem;
            color: #7f8c8d;
        }
        
        /* Estilos do seletor de plantas */
        .plant-selector {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .plant-btn {
            padding: 12px 25px;
            background-color: #ecf0f1;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .plant-btn:hover {
            background-color: #d6dbdf;
        }
        
        .plant-btn.active {
            background-color:var(--primary-color);
            color: white;
        }
        
        /* Estilos da visualização da planta */
        .plant-view {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }
        
        .plant-image-container {
            width: 100%;
            max-width: 800px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .plant-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .plant-image.zoomed {
            transform: scale(1.5);
            cursor: zoom-out;
        }
        
        .plant-details {
            text-align: center;
            max-width: 600px;
        }
        
        .plant-details h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color:var(--primary-color);
        }
        
        .plant-details p {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: #34495e;
        }
        
        .plant-features {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        .feature {
            background-color: #ecf0f1;
            padding: 15px;
            border-radius: 8px;
            min-width: 150px;
            text-align: center;
        }
        
        .feature h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: #2c3e50;
        }
        
        /* Responsividade */
        @media (max-width: 768px) {
            .plant-selector {
                flex-direction: column;
                align-items: center;
            }
            
            .plant-btn {
                width: 100%;
                max-width: 300px;
            }
            
            .plant-features {
                flex-direction: column;
                align-items: center;
            }
            
            .feature {
                width: 100%;
                max-width: 300px;
            }
        }

         /* Estilos do formulário */
        .contact-form {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #3498db;
            outline: none;
        }
        
        .btn-full {
            width: 100%;
            padding: 15px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .btn-full:hover {
            background-color: var(--primary-color);
        }
        
        .privacy-link {
            text-align: center;
            margin-top: 20px;
        }
        
        .privacy-link a {
            color: #7f8c8d;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .privacy-link a:hover {
            color: #3498db;
            text-decoration: underline;
        }
        
        /* Responsividade */
        @media (max-width: 768px) {
            .container {
                padding: 20px 15px;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .contact-form {
                padding: 20px;
            }
        }
        /* Container mais estreito apenas para o formulário de contato */
#contact .container {
    max-width: 480px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* Formulário mais moderno e minimalista */
#contact .contact-form {
    background-color: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

#contact .form-group {
    margin-bottom: 18px;
}

#contact .form-group input,
#contact .form-group select,
#contact .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    background-color: #fafafa;
}

#contact .form-group input:focus,
#contact .form-group select:focus,
#contact .form-group textarea:focus {
    border-color: #a0a0a0;
    outline: none;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

/* Botão mais moderno */
#contact .btn-full {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

#contact .btn-full:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Link de privacidade mais discreto */
#contact .privacy-link {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

#contact .privacy-link a {
    color: #7f8c8d;
    text-decoration: none;
    transition: color 0.2s ease;
}

#contact .privacy-link a:hover {
    color: #5a6a6b;
    text-decoration: underline;
}

/* Estilo para placeholders mais modernos */
#contact ::placeholder {
    color: #9e9e9e;
    opacity: 1;
}

#contact :-ms-input-placeholder {
    color: #9e9e9e;
}

#contact ::-ms-input-placeholder {
    color: #9e9e9e;
}

/* Estilo para o select */
#contact select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

.logo {
    height: 80px;  /* Ajuste conforme o tamanho desejado */
    width: auto;
}
.zoom-wrapper {
    position: relative;
    display: inline-block;
    cursor: zoom-in;
}

.zoom-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 28px;
    color: white;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    padding: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zoom-wrapper:hover .zoom-icon {
    opacity: 1;
}

  .whatsapp-button-pulsante {
    position: fixed;
    bottom: 20px;  /* distância do fundo */
    right: 20px;   /* distância da lateral direita */
    background-color: #25D366; /* cor oficial do WhatsApp */
    color: white;
    font-size: 28px; /* tamanho do ícone */
    width: 60px;  /* largura fixa */
    height: 60px; /* altura fixa */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* torna perfeitamente redondo */
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    animation: pulsar 1.5s infinite;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-button-pulsante:hover {
    transform: scale(1.1);
}
