/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2D5016;
    background-color: #E8F5E8;
}

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

/* Modal para ampliar imagens */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80%;
    object-fit: contain;
    animation: zoom 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
}

/* Header e Navegação */
.navbar {
    background-color: #2D5016;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo h1 {
    color: #C8E6C9;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #C8E6C9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #8FBC8F;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #C8E6C9;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #4A7C59 0%, #6B8E23 100%);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('banner-principal.jpg') no-repeat center top;
    background-size: cover;
    opacity: 0.3;
    z-index: 1;
    transition: background-position 0.5s ease;
}

.hero-banner:hover::before {
    background-position: center bottom;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.hero-author {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-subtitle-extra h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #C8E6C9;
}

/* Seções */
.section {
    padding: 80px 0;
    margin-bottom: 0;
}

.section:nth-child(even) {
    background-color: #FEFEFE;
}

.section h2 {
    font-size: 2.5rem;
    color: #2D5016;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4A7C59;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Seção Sobre */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.text-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333;
}

.project-image {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Seção Personagens */
.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.character-card {
    background: #FEFEFE;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #C8E6C9;
}

.character-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.character-image {
    height: 400px;
    overflow: hidden;
}

.character-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.character-info {
    padding: 2rem;
}

.character-info h3 {
    font-size: 1.8rem;
    color: #2D5016;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.character-info h4 {
    font-size: 1.2rem;
    color: #6B8E23;
    margin-bottom: 1rem;
    font-weight: 600;
}

.character-info p {
    color: #333333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.abilities {
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #6B8E23;
}

.abilities h5 {
    color: #2D5016;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.abilities p {
    color: #4A7C59;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Seção Autor */
.author-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.author-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #6B8E23;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.author-info h3 {
    font-size: 2rem;
    color: #2D5016;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.author-info h4 {
    font-size: 1.3rem;
    color: #6B8E23;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.author-details {
    margin-bottom: 2rem;
}

.author-details p {
    color: #4A7C59;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.biographautoy h5 {
    color: #2D5016;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.biography p {
    color: #333333;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Publicações */
.publications h3 {
    color: #2D5016;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.publications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.publication-item {
    background: #FEFEFE;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid #C8E6C9;
}

.publication-item:hover {
    transform: translateY(-5px);
}

.publication-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.publication-info {
    padding: 1.5rem;
}

.publication-info h4 {
    color: #2D5016;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.year {
    color: #6B8E23;
    font-weight: 600;
    margin-bottom: 1rem;
}

.publication-info p:last-child {
    color: #333333;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Seção Contato */
.contact-form-container {
    background: #FEFEFE;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #C8E6C9;
}

.contact-form-container h3 {
    color: #2D5016;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.contact-form-container form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.container h1,
.section-intro {
    text-align: center;
}
.contact-form-container label {
    color: #2D5016;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form-container input,
.contact-form-container textarea {
    padding: 0.8rem;
    border: 2px solid #C8E6C9;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
    outline: none;
    border-color: #6B8E23;
}

.contact-form-container button {
    background: #6B8E23;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form-container button:hover {
    background: #4A7C59;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    background: #FEFEFE;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #C8E6C9;
    transition: transform 0.3s ease;
}

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

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-item h3 {
    color: #2D5016;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-item p {
    color: #4A7C59;
    margin-bottom: 1rem;
}

.contact-link {
    color: #6B8E23;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #2D5016;
}

.mission-call {
    background: linear-gradient(135deg, #6B8E23, #4A7C59);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 4rem;
}

.mission-call h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mission-call p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #2D5016;
    color: #C8E6C9;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.footer-logo p {
    font-size: 1rem;
    color: #8FBC8F;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin-bottom: 0.5rem;
    color: #8FBC8F;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #2D5016;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-subtitle-extra h2 {
        font-size: 1.5rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .author-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .characters-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }

    .section h2 {
        font-size: 2rem;
    }

    .modal-content {
        width: 95%;
        max-width: none;
    }

    .close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .character-info {
        padding: 1.5rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .mission-call {
        padding: 2rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.character-card {
    animation: fadeInUp 0.6s ease-out;
}

.character-card:nth-child(even) {
    animation-delay: 0.2s;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}


/* Estilos para Seção de Vídeo */
.video-section {
    margin-top: 4rem;
    text-align: center;
}

.video-section h3 {
    color: #2D5016;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    background: #FEFEFE;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #C8E6C9;
}

.video-container iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
    border-radius: 10px;
}

.video-description {
    margin-top: 1rem;
    color: #4A7C59;
    font-size: 1.1rem;
}

/* Estilos para Card Promocional do Livro */
.book-promo-card {
    background: linear-gradient(135deg, #6B8E23, #4A7C59);
    color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.book-promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.book-image {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.book-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.book-promo-card:hover .book-image img {
    transform: scale(1.05);
}

.coming-soon-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FF6B6B;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.book-info {
    padding: 1rem 2rem 2rem 2rem;
}

.book-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.book-info h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #C8E6C9;
}

.book-format {
    color: #8FBC8F;
    font-weight: 600;
    margin-bottom: 1rem;
    font-style: italic;
}

.book-info p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.book-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #C8E6C9;
}

.book-highlight h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.book-highlight p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Destaque Especial do Livro */
.book-special-highlight {
    background: linear-gradient(135deg, #E8F5E8, #C8E6C9);
    padding: 4rem 0;
    margin: 4rem 0;
}

.book-highlight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.book-highlight-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.book-highlight-text h2 {
    color: #2D5016;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.book-highlight-text h3 {
    color: #4A7C59;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.book-highlight-text h4 {
    color: #6B8E23;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-style: italic;
}

.book-highlight-text p {
    color: #333333;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.book-features {
    list-style: none;
    margin-bottom: 2rem;
}

.book-features li {
    color: #4A7C59;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.book-cta {
    background: #6B8E23;
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.book-cta p {
    margin-bottom: 0.5rem;
    color: white;
}

.book-cta p:last-child {
    margin-bottom: 0;
    font-size: 1rem;
    color: #C8E6C9;
}

/* Responsividade para novos elementos */
@media (max-width: 768px) {
    .video-container {
        padding: 1.5rem;
    }
    
    .video-container iframe {
        height: 250px;
    }
    
    .book-highlight-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .book-highlight-text h2 {
        font-size: 2rem;
    }
    
    .book-special-highlight {
        padding: 2rem 0;
    }
    
    .video-section h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .book-info {
        padding: 1.5rem;
    }
    
    .book-highlight-text h2 {
        font-size: 1.8rem;
    }
    
    .book-highlight-text h3 {
        font-size: 1.5rem;
    }
    
    .video-container iframe {
        height: 200px;
    }
}


/* Estilos para Seção de Livros do Autor */
.author-books-highlight {
    background: linear-gradient(135deg, #E8F5E8, #C8E6C9);
    padding: 4rem 0;
    margin: 4rem 0;
}

.author-books-highlight h2 {
    color: #2D5016;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.book-item {
    background: #FEFEFE;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #C8E6C9;
}

.book-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.book-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.book-item:hover img {
    transform: scale(1.05);
}

.book-item-info {
    padding: 1.5rem;
}

.book-item-info h3 {
    color: #2D5016;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.book-item-info p {
    color: #4A7C59;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.book-item-info h4 {
    color: #6B8E23;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Estilos para Seção da Lojinha */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.store-item {
    background: #FEFEFE;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #C8E6C9;
}

.store-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.store-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.store-item:hover img {
    transform: scale(1.05);
}

.store-item-info {
    padding: 1.5rem;
}

.store-item-info h3 {
    color: #2D5016;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.store-item-info p {
    color: #4A7C59;
    line-height: 1.6;
}


/* Botão flutuante do WhatsApp */
#whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: bounce 2s infinite;
}

#whatsapp-float a {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

#whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsividade para o botão do WhatsApp */
@media (max-width: 768px) {
    #whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    #whatsapp-float a {
        width: 50px;
        height: 50px;
    }
    
    #whatsapp-float svg {
        width: 50px;
        height: 50px;
    }
}



/* Pop-up de Confirmação */
.modal-content-confirm {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    animation: animatetop 0.4s;
}

@keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

.close-confirm {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
}

.close-confirm:hover,
.close-confirm:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.confirm-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.confirm-message {
    font-size: 1.2em;
    color: #2D5016;
    margin-bottom: 10px;
}

.container h1 {
    text-align: center;
}

.section-intro {
    text-align: center;
}


/* Estilos para a nova seção de contato */
.contact-info-container {
    background: #FEFEFE;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #C8E6C9;
    text-align: center;
}

.contact-info-container h3 {
    color: #2D5016;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-info-container p {
    color: #4A7C59;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.contact-info-container a {
    color: #6B8E23;
    text-decoration: none;
    font-weight: 600;
}

.contact-info-container a:hover {
    text-decoration: underline;
}

.social-icons {
    margin-top: 2rem;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.social-icons img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}


