/* Estilos Gerais com Cores em Tons de Azul */
:root {
    --primary-color: #3498db;      /* Azul vibrante */
    --secondary-color: #2c3e50;    /* Azul escuro */
    --accent-color: #1abc9c;       /* Verde-azulado */
    --light-accent: #ecf0f1;       /* Cinza muito claro */
    --bright-accent: #74b9ff;      /* Azul claro */
    --text-color: #2c3e50;
    --light-text: #fff;
    --dark-bg: #2c3e50;
    --light-bg: #f6f6f6;
    --gradient-bg: linear-gradient(135deg, var(--primary-color) 0%, #0066cc 100%);
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-bg);
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 20px 0;
    position: relative;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    background: var(--gradient-bg);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
}

.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp:hover {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    box-shadow: 0 5px 15px rgba(193, 53, 132, 0.3);
}

.instagram:hover {
    box-shadow: 0 10px 25px rgba(193, 53, 132, 0.4);
}

.breathing {
    background: linear-gradient(135deg, #448EDD 0%, #4472C4 100%);
    box-shadow: 0 5px 15px rgba(68, 142, 221, 0.3);
}

.breathing:hover {
    box-shadow: 0 10px 25px rgba(68, 142, 221, 0.4);
}

/* Header Animado */
header {
    display: none;
}

.logo h1 {
    font-size: 1.6rem;
    background: var(--gradient-bg);
    background-clip: text;
    font-weight: 700;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 35px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient-bg);
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

/* Hero Section com Animações */
.hero {
    padding-top: 80px;
    padding-bottom: 20px;
    margin-top: 0;
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('https://images.unsplash.com/photo-1508672019048-805c876b67e2?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    text-align: center;
    position: relative;
    overflow: visible;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.5) 0%, rgba(44, 62, 80, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 6px solid var(--bright-accent);
    margin-bottom: 2rem;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(116, 185, 255, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(116, 185, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(116, 185, 255, 0);
    }
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--light-text);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero h2:after {
    background: var(--bright-accent);
}

.hero h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--bright-accent);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.wave-bg {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 1;
}

.wave-bg svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-bg .shape-fill {
    fill: #FFFFFF;
}

/* About Section com Cards Elegantes */
.about {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
    z-index: 10;
    margin-top: -150px;
    padding-top: 20px;
}

.about:before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.1);
}

.about:after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(44, 62, 80, 0.1);
}

/* Imagem flutuante na seção Sobre */
.about-image {
    text-align: center;
    margin-bottom: 40px;
}

.about-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.about-text {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(0);
    transition: transform 0.4s ease;
    text-align: justify;
}

.about-text:hover {
    transform: translateY(-10px);
}

.about-text ul {
    list-style: none;
}

.about-text ul li {
    padding: 7px 0;
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
    position: relative;
    padding-left: 30px;
}

.about-text ul li:before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.about-text ul li:last-child {
    border-bottom: none;
}

.credentials {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.credentials:hover {
    transform: translateY(-10px);
}

.credentials ul {
    list-style: none;
}

.credentials ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
    position: relative;
    padding-left: 30px;
}

.credentials ul li:before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.credentials ul li:last-child {
    border-bottom: none;
}

/* Services Section com Cards Flutuantes */
.services {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.services:before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(116, 185, 255, 0.2);
    border-radius: 50%;
    top: 50px;
    left: -100px;
}

.services:after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(26, 188, 156, 0.2);
    border-radius: 50%;
    bottom: 50px;
    right: -100px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid transparent;
    text-align: center;
}

.service-card:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: 0;
    left: 0;
    background: var(--gradient-bg);
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover:before {
    transform: scaleX(1);
}

.service-icon {
    height: 80px; /* Altura fixa menor */
}

.service-icon img {
    max-height: 60px;
    max-width: 60px;
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

/* Galeria de Imagens */
.gallery {
    background-color: #f6f6f6;
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    padding: 20px;
    font-weight: 600;
    text-align: center;
}

/* Contact Section com Efeitos Modernos */
.contact {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(44, 62, 80, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

.contact-info h3 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.contact-info h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-bg);
    border-radius: 2px;
}

.contact-info ul {
    list-style: none;
}

.contact-info ul li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}
.contact-info ul li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-info ul li:hover i {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.contact-info a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.contact-cta {
    margin-top: 30px;
    justify-content: flex-start;
}

/* Footer com Gradientes */
footer {
    background: var(--dark-bg);
    color: var(--light-text);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-bg);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-logo h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-social a {
    color: var(--light-text);
    font-size: 1.8rem;
    margin-left: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-social a:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.3s ease;
    z-index: -1;
}

.footer-social a:hover {
    color: var(--bright-accent);
    transform: translateY(-5px);
}

.footer-social a:hover:after {
    transform: translate(-50%, -50%) scale(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

/* Animações adicionais e efeitos de rolagem */
.fadeIn {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.fadeIn.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.float {
    animation: float 4s ease-in-out infinite;
}
/* Responsividade com animações preservadas - Código atualizado completo */
@media (max-width: 768px) {
    /* Remover header */
    header {
        display: none;
    }
    
    /* Ajustes para galeria e imagens */
    .gallery-item img {
        height: 200px;
    }
    
    /* Ajuste para o header sem menu */
    .logo {
        text-align: center;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
  
    .hero {
        background-position: center center;
        background-attachment: scroll;
        background-size: cover;
    }
    
    /* Melhorar margens no hero-content */
    .hero-content {
        padding: 0 20px; /* Adiciona padding horizontal */
        max-width: 90%; /* Limita a largura do conteúdo */
        margin: 0 auto; /* Centraliza o conteúdo */
    }
    
    .profile-img {
        width: 180px;
        height: 180px;
        margin-top: 20px; /* Espaço acima da foto */
        margin-bottom: 1.5rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero h3 {
        font-size: 1.5rem;
    }
    
    /* Ajustes para layout */
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 40px; /* Espaço abaixo dos botões */
    }
    
    .service-card:hover {
        transform: translateY(-10px);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* Ajustes para contato e botões */
    .contact-info {
        padding: 30px;
    }
    
    .contact-cta {
        display: flex;
        justify-content: center;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
    
    /* Ajuste para ícones de serviço */
    .service-icon {
        height: 60px;
    }
    
    .service-icon img {
        max-height: 50px;
        max-width: 50px;
    }
    
    /* Ajuste para o espaçamento das seções */
    section {
        padding: 60px 15px;
    }

    /* Ajuste específico para a seção about no mobile */
    .about {
        margin-top: 0;
    }
    
    /* Ajuste para os cards */
    .service-card, 
    .about-text, 
    .credentials {
        padding: 25px;
    }
    
    /* Ajuste para o rodapé */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        margin-top: 20px;
    }
    
    .footer-social a {
        margin: 0 10px;
    }
    
    /* Ajuste para o wave na parte inferior do hero */
    .wave-bg svg {
        height: 50px;
    }
    
    /* Mais espaço ao redor do conteúdo */
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 15px; /* Padding menor para telas muito pequenas */
        max-width: 95%;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero h3 {
        font-size: 1.2rem;
    }
    
    .profile-img {
        width: 150px;
        height: 150px;
    }
    
    /* Ajustes para cards e elementos menores */
    .service-card, 
    .about-text, 
    .credentials, 
    .contact-info {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    /* Ajuste para imagens */
    .gallery-item img {
        height: 180px;
    }
    
    .service-icon {
        height: 50px;
    }
    
    .service-icon img {
        max-height: 40px;
        max-width: 40px;
    }
}

/* Ajustes específicos para dispositivos Samsung de alta resolução */
@media screen and (min-width: 360px) and (max-width: 915px) and (-webkit-device-pixel-ratio: 3) {
    .hero-content {
        padding: 30px 20px !important;
    }
    
    .profile-img {
        margin-top: 40px !important;
    }
    
    section {
        padding: 50px 20px !important;
    }
    
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 20px !important;
    }
}

@supports (-webkit-touch-callout: none) {
    /* Estilos específicos para iOS */
    .hero-content {
      padding: 0 25px;
    }
  }
  
  @supports not (-webkit-touch-callout: none) {
    /* Estilos específicos para Android */
    .hero-content {
      padding: 0 25px !important;
    }
    
    /* Forçar margens em todos elementos */
    .container, section, div {
      box-sizing: border-box !important;
    }
  }
  
.highlight {
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1em;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0066cc 100%);
    background-clip: text;
}

/* Botão com efeito de onda automático (sem hover) */
.btn.whatsapp {
    color: white !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Efeito de onda automático */
.btn.whatsapp:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    animation: pulse-wave 2s infinite;
}

@keyframes pulse-wave {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

/* Efeito de brilho automático */
.btn.whatsapp:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    z-index: -1;
    animation: shine-auto 3s infinite;
}

@keyframes shine-auto {
    0% {
        left: -100%;
    }
    40% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Adicionar ao arquivo styles.css */
.contact-info ul li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.contact-info ul li i {
    min-width: 40px;
    text-align: center;
}

/* Garantir alinhamento consistente para todos os itens */
.contact-info ul li .contact-text {
    padding-left: 15px;
    flex: 1;
}

.section-intro {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

/* Seção de Valores */
.pricing {
    background-color: white;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.pricing:before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(26, 188, 156, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 0;
}

.pricing:after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
    z-index: 0;
}

.pricing-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: all 0.4s ease;
    height: 300px;
    max-height: 35vh; /* Limita a altura em dispositivos móveis */
}

.pricing-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
}

.pricing-image:hover img {
    transform: scale(1.05);
}

.pricing-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pricing-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.pricing-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-bg);
    border-radius: 2px;
}

.pricing-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.7;
    text-align: center;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 2.5rem;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: rgba(52, 152, 219, 0.05);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pricing-feature:hover {
    background-color: rgba(52, 152, 219, 0.1);
    transform: translateX(5px);
}

.pricing-feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
    background: rgba(52, 152, 219, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.pricing-feature:hover i {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.pricing-feature h4 {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.pricing-feature p {
    font-size: 1rem;
    margin-bottom: 0;
    text-align: left;
}

.pricing-cta {
    justify-content: center;
    margin-top: 0;
}

.pricing-cta .btn {
    padding: 15px 30px;
    font-size: 1rem;
}

/* Responsividade para a seção de preços */
@media (max-width: 768px) {
    .pricing {
        padding: 70px 0;
    }
    
    .pricing-container {
        gap: 30px;
    }
    
    .pricing-image {
        height: 200px; /* Altura reduzida para tablets */
    }
    
    .pricing-content {
        padding: 30px;
    }
    
    .pricing-content h3 {
        font-size: 1.6rem;
    }
    
    .pricing-feature {
        padding: 15px;
    }
    
    .pricing-feature i {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .pricing-feature h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .pricing {
        padding: 50px 0;
    }
    
    .pricing-image {
        height: 160px; /* Altura significativamente reduzida para celulares */
        max-height: 25vh;
    }
    
    .pricing-content {
        padding: 25px 20px;
    }
    
    .pricing-content h3 {
        font-size: 1.4rem;
    }
    
    .pricing-feature {
        gap: 15px;
        padding: 15px 12px;
    }
    
    .pricing-feature i {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .pricing-feature h4 {
        font-size: 1.1rem;
    }
}

/* Ajustes específicos para telas muito pequenas */
@media (max-width: 360px) {
    .pricing-image {
        height: 140px; /* Altura ainda menor para telas muito pequenas */
    }

    .pricing-feature {
        padding: 12px 10px;
    }

    .pricing-feature i {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

/* Ajustes para zoom no desktop */
@media (min-width: 1024px) {
    .hero {
        padding-bottom: 80px;
        min-height: calc(100vh + 20px);
    }

    .about {
        padding-top: 30px;
        margin-top: 0;
    }
}