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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1B003D 0%, #0A001A 100%);
    color: #EDEAF5;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(27, 0, 61, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #5CE1E6, #E68CFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo img {
    height: 40px;
    width: auto;
}

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

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

.nav-menu a:hover {
    color: #5CE1E6;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px;
    position: relative;
    background-image: url('imagem/capa_site.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    pointer-events: none;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(45deg, #5CE1E6, #E68CFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(92, 225, 230, 0.3);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(45deg, #5CE1E6, #E68CFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
}

.hero-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    background: linear-gradient(45deg, #5CE1E6, #E68CFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
}

.highlight-blue {
    color: #5CE1E6;
    font-weight: 600;
}

.highlight-purple {
    color: #C67FFF;
    font-weight: 600;
}

.highlight-pink {
    color: #FF6FA8;
    font-weight: 600;
}

.cta-button {
    background: linear-gradient(45deg, #5CE1E6, #E68CFF);
    color: #FFFFFF;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(92, 225, 230, 0.4);
    margin: 0.5rem;
    opacity: 1;
    visibility: visible;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(92, 225, 230, 0.6);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #5CE1E6;
    color: #5CE1E6;
    box-shadow: 0 10px 30px rgba(92, 225, 230, 0.2);
    opacity: 1;
    visibility: visible;
}

.cta-button.secondary:hover {
    background: linear-gradient(45deg, #5CE1E6, #E68CFF);
    color: #FFFFFF;
    box-shadow: 0 15px 40px rgba(92, 225, 230, 0.6);
}

.cta-button.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

/* Sections */
.section {
    padding: 60px 0;
    position: relative;
}

.section.compact {
    padding: 40px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #5CE1E6, #E68CFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Intro Card Lateral */
.intro-card-lateral {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo-lateral {
    flex: 0 0 200px;
    display: flex;
    justify-content: center;
}

.content-lateral {
    flex: 1;
}

.section-logo {
    height: 150px;
    width: auto;
}

.content-lateral p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: left;
}

/* Features with Image */
.features-with-image {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 2rem;
}

.features-image {
    width: 150%;
    max-width: 600px;
    order: 2;
    margin-top: 3rem;
}

.features-image img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(92, 225, 230, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.features-compact {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: none;
    margin: 0;
    order: 1;
}

/* Benefits with Image */
.benefits-with-image {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.benefits-image {
    width: 150%;
    max-width: 600px;
    order: 1;
}

.benefits-image img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(230, 140, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.benefits-grid.compact {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 0;
    order: 2;
}

.feature-compact {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.feature-compact:hover {
    transform: translateY(-3px);
}

.feature-icon-small {
    font-size: 1.5rem;
    color: #5CE1E6;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content h4 {
    color: #5CE1E6;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-content p {
    color: #EDEAF5;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

/* Benefits Compact */
.benefits-grid.compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-card.compact {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card.compact:hover {
    transform: translateY(-3px);
}

.benefit-card.compact .benefit-icon {
    font-size: 2rem;
    color: #E68CFF;
    margin-bottom: 1rem;
}

.benefit-card.compact h4 {
    color: #EDEAF5;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-card.compact p {
    color: #EDEAF5;
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Plans Section */
.plans-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #EDEAF5;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.plan-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plan-card.featured {
    border: 2px solid #E68CFF;
    box-shadow: 0 0 30px rgba(230, 140, 255, 0.3);
}

.plan-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #E68CFF, #5CE1E6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #5CE1E6;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: #E68CFF;
    margin-bottom: 1rem;
}

.plan-price span {
    font-size: 1rem;
    opacity: 0.8;
}

.plan-header p {
    color: #EDEAF5;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.plan-features h4 {
    color: #5CE1E6;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.plan-features li {
    padding: 0.3rem 0;
    color: #EDEAF5;
    font-size: 0.95rem;
}

.plan-benefits {
    background: rgba(92, 225, 230, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 3px solid #5CE1E6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #EDEAF5;
}

.plan-button {
    width: 100%;
    background: linear-gradient(45deg, #5CE1E6, #E68CFF);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(92, 225, 230, 0.4);
}

.plan-button.featured {
    background: linear-gradient(45deg, #E68CFF, #5CE1E6);
    box-shadow: 0 5px 15px rgba(230, 140, 255, 0.4);
}

.plans-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.plans-cta h3 {
    color: #E68CFF;
    margin-bottom: 1rem;
}

.plans-cta p {
    color: #EDEAF5;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.column-title {
    color: #5CE1E6;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Audience with Image */
.audience-with-image {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.audience-list.centered {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: none;
    margin: 0;
    order: 1;
}

.audience-image {
    width: 150%;
    max-width: 600px;
    order: 2;
}

.audience-image img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(92, 225, 230, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.audience-item.compact {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    color: #EDEAF5;
    font-size: 0.95rem;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-start;
}

.audience-item.compact i {
    font-size: 1.5rem;
    color: #5CE1E6;
    min-width: 30px;
}

/* Testimonials Compact */
.testimonials-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-compact {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.testimonial-compact:before {
    content: '"';
    font-size: 2rem;
    color: #5CE1E6;
    position: absolute;
    top: -5px;
    left: 15px;
    opacity: 0.5;
}

.testimonial-compact p {
    font-style: italic;
    color: #EDEAF5;
    margin: 0;
    font-size: 1rem;
}

/* CTA Section Compact */
.cta-section.compact {
    padding: 60px 0;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(138, 46, 255, 0.1) 0%, transparent 70%);
}

.benefit-highlight.compact {
    background: rgba(92, 225, 230, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #5CE1E6;
    margin-top: 1rem;
    font-size: 0.95rem;
    text-align: center;
}

/* Content Cards */
.content-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.content-card h3 {
    color: #5CE1E6;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.content-card p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.highlight-text {
    background: rgba(92, 225, 230, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #5CE1E6;
    margin-top: 1.5rem;
}

/* Detailed Features */
.detailed-features {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.detailed-feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.detailed-feature-card:hover {
    transform: translateY(-5px);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-header h3 {
    color: #5CE1E6;
    font-size: 1.3rem;
    margin: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #EDEAF5;
}

.feature-list li:before {
    content: "•";
    color: #E68CFF;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.benefit-highlight {
    background: rgba(230, 140, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #E68CFF;
    margin: 0;
    font-size: 1rem;
}

/* Target Audience */
.target-audience {
    margin-top: 3rem;
}

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

.audience-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-3px);
}

.audience-item i {
    font-size: 1.5rem;
    color: #5CE1E6;
    min-width: 30px;
}

.audience-item span {
    font-size: 1.1rem;
    color: #EDEAF5;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.testimonial-card:before {
    content: '"';
    font-size: 4rem;
    color: #5CE1E6;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    color: #EDEAF5;
    margin: 0;
    line-height: 1.6;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(92, 225, 230, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: #5CE1E6;
    margin-bottom: 1rem;
}

.feature-icon.highlight-blue {
    color: #5CE1E6;
}

.feature-icon.highlight-purple {
    color: #C67FFF;
}

.feature-icon.highlight-pink {
    color: #FF6FA8;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #EDEAF5;
}

.feature-card p {
    color: #EDEAF5;
    opacity: 0.9;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    color: #E68CFF;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #EDEAF5;
}

/* Raizes Section */
.raizes-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 3rem;
}

.raizes-image {
    flex: 0 0 40%;
}

.raizes-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

.raizes-text {
    flex: 1;
}

.raizes-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(138, 46, 255, 0.1) 0%, transparent 70%);
}

.cta-subtitle {
    font-size: 1.8rem;
    color: #5CE1E6;
    margin-bottom: 2rem;
    font-weight: 600;
}

.cta-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #EDEAF5;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E68CFF;
    margin-top: 3rem;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section.compact {
        padding: 30px 0;
    }
    
    .features-compact {
        grid-template-columns: 1fr;
    }
    
    .feature-compact {
        flex-direction: column;
        text-align: center;
    }
    
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid.compact {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-with-image,
    .benefits-with-image,
    .audience-with-image {
        flex-direction: column;
        text-align: center;
    }
    
    .features-image,
    .benefits-image,
    .audience-image {
        flex: none;
        width: 100%;
    }
    
    .testimonials-compact {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .raizes-content {
        flex-direction: column;
        text-align: center;
    }
    
    .raizes-image {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 30px 0;
    }
    
    .section.compact {
        padding: 25px 0;
    }
    
    .benefits-grid.compact {
        grid-template-columns: 1fr;
    }
    
    .intro-card-lateral {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .logo-lateral {
        flex: none;
    }
    
    .section-logo {
        height: 80px;
    }
    
    .content-lateral p {
        text-align: center;
    }
    
    .intro-card,
    .feature-compact,
    .benefit-card.compact,
    .testimonial-compact {
        padding: 1rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card {
        padding: 1.5rem;
    }
    
    .plans-cta {
        padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.benefit-card,
.value-card,
.content-card {
    animation: fadeInUp 0.6s ease-out;
}