/* LG Cerimônias - Bold Terracotta Wedding Celebrant Design System */

/* ================================
   LOADING & FOUC PREVENTION
   ================================ */

/* Garante que o background seja consistente durante carregamento */
html {
    background-color: #0d0d0d;
    overflow-y: scroll;
}

body {
    background-color: #0d0d0d;
    min-height: 100vh;
}

/* Previne flash apenas em links não estilizados */
body a:not([class]) {
    color: inherit;
    text-decoration: none;
}

/* ================================
   TESTIMONIALS PAGE STYLES
   ================================ */

.testimonials-page-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, hsl(var(--background)) 0%, hsl(var(--card)) 100%);
    position: relative;
    overflow: visible; /* Permite que o carrossel funcione */
}

.testimonials-page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, hsl(var(--terracotta) / 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, hsl(var(--olive-light) / 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Carousel Container */
.testimonials-carousel-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 0 4rem 3rem 4rem;
    overflow: visible;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 1.5rem;
}

.testimonials-carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    width: 100%;
}

.testimonial-card {
    background: hsl(var(--card) / 0.9);
    border: 1px solid hsl(var(--border));
    border-radius: 1.5rem;
    padding: 3rem;
    position: relative;
    backdrop-filter: blur(15px);
    box-shadow: 0 12px 48px hsl(var(--background) / 0.3);
    flex: 0 0 100%;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Efeito hover para cards do carrossel - sem transform para não interferir com translateX */
.testimonials-carousel .testimonial-card:hover {
    box-shadow: 0 20px 60px hsl(var(--terracotta) / 0.3), 0 0 80px hsl(var(--terracotta) / 0.1);
    border-color: hsl(var(--terracotta) / 0.5);
    background: hsl(var(--card) / 0.95);
}

.testimonials-carousel .testimonial-card:hover .quote-icon {
    color: hsl(var(--terracotta));
    filter: drop-shadow(0 0 8px hsl(var(--terracotta) / 0.5));
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(var(--terracotta)), hsl(var(--olive-light)));
    border-radius: 1.5rem 1.5rem 0 0;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    padding: 1rem 0;
}

.carousel-indicator {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    border: none;
    background: hsl(var(--muted) / 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.carousel-indicator::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: hsl(var(--muted-foreground) / 0.6);
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: hsl(var(--terracotta) / 0.2);
}

.carousel-indicator.active::before {
    background: hsl(var(--terracotta));
    width: 16px;
    height: 16px;
}

.carousel-indicator:hover {
    background: hsl(var(--terracotta) / 0.1);
    transform: scale(1.1);
}

.carousel-indicator:focus {
    outline: 2px solid hsl(var(--terracotta));
    outline-offset: 2px;
}

.carousel-btn {
    background: hsl(var(--terracotta));
    border: none;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px hsl(var(--terracotta) / 0.4);
    pointer-events: all;
    position: relative;
    z-index: 20;
}

.carousel-btn:focus {
    outline: 2px solid hsl(0 0% 100%);
    outline-offset: 2px;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 16px 48px hsl(var(--terracotta) / 0.6);
    background: hsl(var(--terracotta-light));
}

.carousel-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}


.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(var(--terracotta)), hsl(var(--olive-light)));
    border-radius: 1.5rem 1.5rem 0 0;
}

.testimonial-quote {
    margin-bottom: 2rem;
}

.quote-icon {
    width: 3rem;
    height: 3rem;
    color: hsl(var(--terracotta));
    opacity: 1;
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    line-height: 1.7;
    color: hsl(var(--foreground));
    font-style: italic;
    margin-bottom: 2rem;
    quotes: '"' '"' ''' ''';
}

.testimonial-text::before {
    content: open-quote;
    font-size: 1.5em;
    color: hsl(var(--terracotta));
}

.testimonial-text::after {
    content: close-quote;
    font-size: 1.5em;
    color: hsl(var(--terracotta));
}

.testimonial-author {
    border-top: 1px solid hsl(var(--border));
    padding-top: 1.5rem;
}

.author-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-names {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: hsl(var(--terracotta));
}

.author-date {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: hsl(var(--muted-foreground));
    opacity: 0.8;
}

.testimonials-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, hsl(var(--card)) 0%, hsl(var(--background)) 100%);
    text-align: center;
    position: relative;
}

.testimonials-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, hsl(var(--terracotta) / 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Base CTA styles */
.testimonials-cta-button,
.service-cta-button,
.story-cta-button,
.contact-button {
    background: linear-gradient(135deg, hsl(var(--terracotta)), hsl(var(--terracotta-dark)));
    color: hsl(var(--primary-foreground));
    border: none;
    border-radius: 3rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.testimonials-cta-button:hover,
.service-cta-button:hover,
.story-cta-button:hover,
.contact-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.testimonials-cta-button {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    margin-top: 2rem;
}

/* ================================
   SERVICES PAGE STYLES
   ================================ */

.services-highlight {
    padding: 8rem 0 5rem 0;
    background: linear-gradient(135deg, hsl(var(--background)) 0%, hsl(var(--card)) 100%);
    position: relative;
    overflow: hidden;
}

.services-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, hsl(var(--terracotta) / 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, hsl(var(--olive-light) / 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.highlight-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.highlight-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 2rem;
    line-height: 1.2;
}

.highlight-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: hsl(var(--muted-foreground));
}

.highlight-text p {
    margin-bottom: 1.5rem;
}

.service-features {
    padding: 5rem 0;
    background: hsl(var(--card));
    position: relative;
    overflow: hidden;
}

.service-features .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.service-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, hsl(var(--terracotta) / 0.05) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, hsl(var(--olive-light) / 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.features-header {
    text-align: center;
    margin-bottom: 5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-feature {
    background: hsl(var(--background) / 0.8);
    border: 1px solid hsl(var(--border));
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px hsl(var(--background) / 0.3);
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(var(--terracotta)), hsl(var(--olive-light)));
    border-radius: 1.5rem 1.5rem 0 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-feature:hover::before {
    transform: scaleX(1);
}

.service-feature:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 80px hsl(var(--terracotta) / 0.2);
    border-color: hsl(var(--terracotta) / 0.3);
}

.service-feature:nth-child(even):hover {
    box-shadow: 0 20px 80px hsl(var(--olive-light) / 0.2);
    border-color: hsl(var(--olive-light) / 0.3);
}

/* Efeito alternado - disposição em Z */
.service-feature:nth-child(1) {
    animation-delay: 0.1s;
}

.service-feature:nth-child(2) {
    animation-delay: 0.2s;
}

.service-feature:nth-child(3) {
    animation-delay: 0.3s;
}

.service-feature:nth-child(4) {
    animation-delay: 0.4s;
}

/* Animação de entrada escalonada */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.service-feature {
    animation: fadeInScale 0.6s ease-out forwards;
    opacity: 0;
}

/* Diferenciação visual sutil entre cards */
.service-feature:nth-child(2),
.service-feature:nth-child(3) {
    position: relative;
}

.service-feature:nth-child(2)::after,
.service-feature:nth-child(3)::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, hsl(var(--olive-light) / 0.1), hsl(var(--terracotta) / 0.1));
    border-radius: 1.5rem;
    z-index: -1;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1.5rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, hsl(var(--terracotta)), hsl(var(--terracotta-dark)));
    border-radius: 1rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-feature:nth-child(even) .feature-icon {
    background: linear-gradient(135deg, hsl(var(--olive-light)), hsl(var(--secondary)));
}

.service-feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    color: hsl(var(--muted-foreground));
}

.service-cta {
    padding: 5rem 0 8rem 0;
    background: linear-gradient(135deg, hsl(var(--background)) 0%, hsl(var(--card)) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, hsl(var(--terracotta) / 0.1) 0%, transparent 70%);
    pointer-events: none;
}


.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: hsl(var(--muted-foreground));
    margin-bottom: 3rem;
}

.service-cta-button {
    padding: 1.5rem 3.5rem;
    font-size: 1.2rem;
    gap: 1rem;
}

.cta-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .highlight-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
    }
    
    .service-feature {
        padding: 2rem;
    }
    
}

@media (max-width: 480px) {
    .highlight-title,
    .cta-title {
        font-size: 1.75rem;
    }
    
    .highlight-text,
    .cta-description {
        font-size: 1rem;
    }
    
    .service-feature {
        padding: 1.5rem;
    }
}

/* ================================
   CONTACT PAGE STYLES
   ================================ */

.contact-options {
    padding: 4rem 0;
    background: linear-gradient(135deg, hsl(var(--background)) 0%, hsl(var(--card)) 100%);
    position: relative;
    overflow: hidden;
}

.contact-options::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, hsl(var(--terracotta) / 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, hsl(var(--olive-light) / 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: hsl(var(--card) / 0.8);
    border: 1px solid hsl(var(--border));
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px hsl(var(--background) / 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 320px;
}

.contact-card.primary-contact {
    border-color: hsl(var(--terracotta) / 0.3);
    background: linear-gradient(135deg, hsl(var(--terracotta) / 0.05), hsl(var(--card) / 0.8));
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 64px hsl(var(--terracotta) / 0.15);
    border-color: hsl(var(--terracotta) / 0.4);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1.5rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, hsl(var(--terracotta)), hsl(var(--terracotta-dark)));
    border-radius: 1rem;
    color: white;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.contact-description {
    font-family: 'Poppins', sans-serif;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    margin-bottom: 2rem;
    flex: 1;
    display: flex;
    align-items: center;
}

.contact-button {
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    justify-content: center;
    width: 100%;
    min-height: 3.5rem;
    font-size: 0.95rem;
}

.contact-button.secondary {
    background: transparent;
    border: 2px solid hsl(var(--terracotta));
    color: hsl(var(--terracotta));
}


.contact-button.secondary:hover {
    background: hsl(var(--terracotta));
    color: hsl(var(--primary-foreground));
}

.contact-form-section {
    background: linear-gradient(135deg, hsl(var(--card)), hsl(20 8% 14%));
    border: 1px solid hsl(var(--border));
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-dramatic);
    backdrop-filter: blur(10px);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.form-header {
    text-align: center;
    margin-bottom: 1rem;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-family: 'Poppins', sans-serif;
    color: hsl(var(--muted-foreground));
    font-size: 1.1rem;
}

.contact-form {
    max-width: 1000px;
    margin: 0 auto;
    background: hsl(var(--background));
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid hsl(var(--border));
    box-shadow: 0 16px 64px hsl(var(--background) / 0.5);
    width: 100%;
    box-sizing: border-box;
    overflow: hidden; /* Previne elementos saindo do card */
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%; /* Garante que não ultrapasse o container */
    box-sizing: border-box;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: hsl(var(--foreground));
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
    padding: 1rem;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 0.5rem;
    color: hsl(var(--foreground));
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: hsl(var(--terracotta));
    box-shadow: 0 0 0 3px hsl(var(--terracotta) / 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    margin-top: 2rem;
    text-align: center;
}

.form-submit-button {
    background: linear-gradient(135deg, hsl(var(--terracotta)), hsl(var(--terracotta-dark)));
    color: hsl(var(--primary-foreground));
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 3rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px hsl(var(--terracotta) / 0.3);
}

.form-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px hsl(var(--terracotta) / 0.4);
    filter: brightness(1.1);
}

.button-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.contact-info {
    padding: 6rem 0;
    background: linear-gradient(135deg, hsl(var(--background)) 0%, hsl(var(--card)) 100%);
}

.info-content {
    text-align: center;
}

.info-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-item {
    padding: 2rem;
    background: hsl(var(--card) / 0.5);
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
}

.info-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: hsl(var(--terracotta));
    margin-bottom: 1rem;
}

.info-text {
    font-family: 'Poppins', sans-serif;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2.5rem;
        margin: 0 1rem;
        max-width: 95%;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
        min-height: 3.5rem;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 2rem;
        margin: 0 0.5rem;
        max-width: 90%;
    }
    
    .form-grid {
        gap: 1.5rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 1rem 1.25rem;
        font-size: 1rem;
        min-height: 3.25rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonials-carousel-container {
        margin: 2rem auto 0;
        padding: 0 3rem 3rem 3rem;
        max-width: 95%;
        overflow: visible;
    }
    
    .carousel-wrapper {
        overflow: hidden; /* Wrapper esconde, não o carousel */
    }
    
    .testimonials-carousel {
        width: 100%;
        overflow: visible; /* Carousel precisa ser visível para mostrar todos */
        display: flex;
        flex-wrap: nowrap;
    }
    
    .testimonial-card {
        padding: 2rem;
        min-height: 350px;
        width: 100%;
        flex-shrink: 0;
        min-width: 100%;
        flex: 0 0 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        box-sizing: border-box !important;
    }
    
    .carousel-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        position: absolute;
    }
    
    .carousel-btn svg {
        width: 1.25rem;
        height: 1.25rem;
    }
    
    .carousel-indicators {
        gap: 0.5rem;
        margin-top: 2rem;
        padding: 1rem 0 0.5rem 0;
    }
    
    .carousel-indicator {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        flex-shrink: 0;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .carousel-prev {
        left: -0.5rem;
    }
    
    .carousel-next {
        right: -0.5rem;
    }
}

@media (max-width: 480px) {
    .testimonials-carousel-container {
        padding: 0 2rem;
    }
    
    .carousel-prev {
        left: -1rem;
    }
    
    .carousel-next {
        right: -1rem;
    }
}
    
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
    }
    
    .contact-card {
        padding: 2rem;
        min-height: 280px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Previne scrollbar shift durante carregamento */
html {
    overflow-y: scroll;
}

:root {
    /* Bold Terracotta & Olive Theme - WCAG AA Compliant */
    --background: 0 0% 5%;
    --foreground: 0 0% 100%;

    --card: 0 0% 8%;
    --card-foreground: 0 0% 100%;

    --popover: 0 0% 8%;
    --popover-foreground: 0 0% 100%;

    /* Vibrant Terracotta Primary */
    --primary: 18 51% 40%;
    --primary-foreground: 0 0% 100%;
    --primary-glow: 15 90% 65%;
    --primary-dark: 15 75% 45%;

    /* Rich Olive Secondary */
    --secondary: 67 25% 16%;
    --secondary-foreground: 0 0% 100%;
    --secondary-light: 60 25% 45%;

    /* Sophisticated Muted - WCAG AA Compliant */
    --muted: 0 0% 15%;
    --muted-foreground: 0 0% 85%;

    /* Bold Accent */
    --accent: 18 51% 40%;
    --accent-foreground: 0 0% 100%;

    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 100%;

    --border: 0 0% 25%;
    --input: 0 0% 12%;
    --ring: 18 51% 40%;

    /* Dramatic Wedding Colors */
    --terracotta: 18 51% 40%;
    --terracotta-light: 18 56% 50%;
    --terracotta-dark: 18 46% 30%;
    --olive: 67 25% 16%;
    --olive-light: 67 30% 26%;
    --olive-dark: 67 20% 12%;
    --deep-black: 0 0% 5%;
    --warm-white: 0 0% 100%;
    --accent-gold: 45 95% 60%;

    /* Striking Gradients */
    --gradient-hero: linear-gradient(135deg, hsl(18 51% 40%) 0%, hsl(67 25% 16%) 50%, hsl(0 0% 5%) 100%);
    --gradient-terracotta: linear-gradient(135deg, hsl(18 51% 40%), hsl(18 56% 50%));
    --gradient-olive: linear-gradient(135deg, hsl(67 25% 16%), hsl(67 30% 26%));
    --gradient-dramatic: linear-gradient(180deg, hsl(0 0% 5%), hsl(18 8% 10%));
    --gradient-glow: radial-gradient(circle at center, hsl(18 51% 40% / 0.3), transparent 70%);

    /* Bold Shadows */
    --shadow-terracotta: 0 20px 60px -10px hsl(18 51% 40% / 0.4);
    --shadow-olive: 0 20px 60px -10px hsl(67 25% 16% / 0.3);
    --shadow-dramatic: 0 25px 80px -20px hsl(0 0% 0% / 0.8);
    --shadow-glow: 0 0 40px hsl(18 51% 40% / 0.5);

    --radius: 1rem;
}

body {
    font-family: 'Poppins', sans-serif;
    background: hsl(var(--deep-black));
    color: hsl(var(--foreground));
    line-height: 1.6;
    overflow-x: hidden;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23E8744B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L19 4"/><path d="m21 2-9.6 9.6"/><circle cx="7.5" cy="15.5" r="5.5"/></svg>') 12 12, auto;
}

/* Fix for H1 API deprecation - uniform font-size for consistent rendering */
:where(h1) {
    margin-block: 0.67em;
    font-size: 2em;
}

/* Base H1 style with enhanced properties */
h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Additional specificity for semantic containers (fallback) */
:where(section h1, article h1, aside h1, nav h1, main h1, header h1) {
    margin-block: 0.67em;
    font-size: 2em;
}


/* WCAG AA Contrast Compliance - Minimum 4.5:1 for small text */
.nav-link,
.feature-description,
.form-subtitle,
.contact-description,
.info-text,
.moments-subtitle,
.form-description,
.trust-text,
.divider-text,
.cta-card-description {
    color: hsl(0 0% 90%) !important;
}

/* Large text (≥24px or ≥19px bold) - Minimum 3:1 contrast */
.hero-title,
.page-title,
.about-title,
.features-title,
.testimonials-title,
.moments-title,
.cta-title {
    color: hsl(0 0% 100%) !important;
}

/* Small muted text elements - Enhanced contrast */
.author-name,
.author-date,
.rating-text {
    color: hsl(0 0% 85%) !important;
}

/* Accent colors - Ensure sufficient contrast on dark backgrounds */
.text-terracotta {
    color: hsl(var(--terracotta-light)) !important;
}

.text-olive-light {
    color: hsl(60 25% 55%) !important;
}

/* Button secondary with transparent background - ensure proper contrast */
.contact-button.secondary {
    color: hsl(var(--terracotta-light)) !important;
    border-color: hsl(var(--terracotta-light)) !important;
}

/* Site Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: hsl(var(--deep-black) / 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid hsl(var(--border));
    height: 80px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 100%;
    overflow: hidden;
}

.nav-brand a {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

.nav-brand .brand-logo {
    height: auto;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-brand .brand-logo:hover {
    transform: scale(1.05);
}

.nav-brand .brand-lg {
    color: hsl(var(--terracotta));
}

.nav-brand .brand-cerimonias {
    color: hsl(var(--warm-white));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    padding-bottom: 4px !important;
}

/* Underline animado */
.nav-link::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) scaleX(0) !important;
    width: 100% !important;
    height: 2px !important;
    background: linear-gradient(90deg, #C17767, #D4AF37) !important;
    border-radius: 2px !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform-origin: center !important;
}

.nav-link:hover {
    color: #C17767 !important;
    transform: translateY(-2px) !important;
    text-shadow: 0 2px 8px rgba(193, 119, 103, 0.2) !important;
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1) !important;
}

/* Estado ativo com animação pulsante */
.nav-link.active {
    color: #C17767 !important;
    font-weight: 600 !important;
}

.nav-link.active::after {
    transform: translateX(-50%) scaleX(1) !important;
    animation: pulse-line 2s ease-in-out infinite !important;
}

@keyframes pulse-line {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 8px rgba(193, 119, 103, 0.4);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 16px rgba(193, 119, 103, 0.6);
    }
}

/* Botões sociais no nav */
.nav-social-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Esconder botões sociais dentro do menu no desktop */
.nav-menu-social {
    display: none;
}

.nav-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
}

.nav-social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.nav-social-btn.instagram:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(188, 24, 136, 0.4);
}

.nav-social-btn.instagram:active {
    transform: translateY(0) scale(0.98);
}

.nav-social-icon {
    width: 1.25rem !important;
    height: 1.25rem !important;
    max-width: 1.25rem !important;
    max-height: 1.25rem !important;
    stroke: currentColor;
    fill: none !important;
}

/* Força tamanho correto dos SVG dentro dos botões sociais */
.nav-social-btn svg,
.nav-social-btn.instagram svg {
    width: 1.25rem !important;
    height: 1.25rem !important;
    max-width: 1.25rem !important;
    max-height: 1.25rem !important;
    display: block !important;
}

.nav-cta {
    background: var(--gradient-terracotta);
    color: white;
    border: none;
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
}

.nav-cta-icon {
    width: 1rem;
    height: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    width: 1.5rem;
    height: 1.5rem;
    gap: 0.25rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: hsl(var(--terracotta));
    border-radius: 1px;
    transition: all 0.3s ease;
}

/* Mobile Menu Animation */
.mobile-menu-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    /* Esconder botões sociais do header no mobile - eles aparecem apenas dentro do menu */
    .nav-social-desktop,
    .nav-social-buttons.nav-social-desktop {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    /* Mostrar botões sociais dentro do menu mobile */
    .nav-menu-social {
        display: block !important;
        width: 100%;
        list-style: none;
    }
    
    /* Logo mantém tamanho natural no mobile */
    
    .nav-menu {
        position: fixed;
        top: 4rem;
        right: -100%;
        width: 300px;
        height: calc(100vh - 4rem);
        background: hsl(var(--card));
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        transition: right 0.3s ease;
        border-left: 1px solid hsl(var(--border));
        z-index: 1000;
    }
    
    .nav-menu.nav-menu-open {
        right: 0;
        display: flex;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid hsl(var(--border) / 0.3);
        width: 100%;
        font-size: 1.1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    /* Botões sociais dentro do menu mobile */
    .nav-menu-social .nav-social-buttons {
        display: flex !important;
        flex-direction: row;
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid hsl(var(--border) / 0.3);
        width: 100%;
        justify-content: center;
    }
    
    .nav-menu-social .nav-cta {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        margin-top: 0;
        width: auto;
    }
    
    .nav-menu-social .nav-social-btn {
        width: 3rem;
        height: 3rem;
    }
    
    /* Força tamanho correto dos ícones SVG no mobile */
    .nav-menu-social .nav-social-icon,
    .nav-menu-social .nav-social-btn svg {
        width: 1.5rem !important;
        height: 1.5rem !important;
        max-width: 1.5rem !important;
        max-height: 1.5rem !important;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
        padding: 0 2rem;
    }
}

/* Utility Classes */
.text-terracotta {
    color: hsl(var(--terracotta));
}

.text-olive {
    color: hsl(var(--olive));
}

.text-olive-light {
    color: hsl(var(--olive-light));
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.animate-scale-in {
    animation: scaleIn 0.5s ease-out forwards;
    opacity: 0;
    transform: scale(0.9);
}


/* Animation Delays */
.delay-200 {
    animation-delay: 0.2s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-600 {
    animation-delay: 0.6s;
}

.delay-800 {
    animation-delay: 0.8s;
}

.delay-1000 {
    animation-delay: 1s;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    background: var(--gradient-dramatic);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.hero-glow {
    position: absolute;
    background: var(--gradient-glow);
    border-radius: 50%;
}

.hero-glow-1 {
    top: 25%;
    left: 25%;
    width: 24rem;
    height: 24rem;
}

.hero-glow-2 {
    bottom: 25%;
    right: 25%;
    width: 20rem;
    height: 20rem;
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 100vh;
    padding: 8rem 0 2rem 0;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        padding: 6rem 0;
        height: 100vh;
    }
}

.hero-content {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}

.hero-brand {
    margin-bottom: 1rem;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .brand-text {
        font-size: 3.5rem;
    }
}

.brand-lg {
    color: hsl(var(--terracotta));
}

.brand-cerimonias {
    color: hsl(var(--warm-white));
    margin-left: 0.5rem;
}

.brand-line {
    height: 0.25rem;
    width: 8rem;
    background: var(--gradient-terracotta);
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .brand-line {
        margin: 0;
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: hsl(var(--warm-white));
    line-height: 1.3;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 2.25rem;
    }
}

.hero-subtitle {
    color: hsl(var(--terracotta-light));
    font-style: normal;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: hsl(var(--muted-foreground));
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 1.125rem;
        margin-left: 0;
        margin-right: 0;
    }
}

.hero-cta {
    margin-bottom: 1rem;
}

.cta-button {
    background: var(--gradient-terracotta);
    color: white;
    padding: 1.5rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-terracotta);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.cta-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.cta-button:hover .cta-icon {
    animation: pulse 1s infinite;
}

.hero-visual {
    position: relative;
}

.hero-image-container {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 25rem;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-dramatic);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(var(--deep-black) / 0.6), transparent, transparent);
    border-radius: 1.5rem;
}


.hero-deco {
    position: absolute;
    border-radius: 50%;
    filter: blur(2rem);
}

.hero-deco-1 {
    top: 2.5rem;
    right: 2.5rem;
    width: 5rem;
    height: 5rem;
    background-color: hsl(var(--olive) / 0.3);
    animation: pulse 3s infinite;
}

.hero-deco-2 {
    bottom: 5rem;
    right: 5rem;
    width: 4rem;
    height: 4rem;
    background-color: hsl(var(--terracotta) / 0.2);
    animation: float 4s ease-in-out infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid hsl(var(--terracotta));
    border-radius: 1rem;
    display: flex;
    justify-content: center;
}

.scroll-dot {
    width: 0.25rem;
    height: 0.75rem;
    background-color: hsl(var(--terracotta));
    border-radius: 0.125rem;
    margin-top: 0.5rem;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    background-color: hsl(var(--deep-black)); /* Cor de fundo mais neutra */
}

/* Imagem de fundo via HTML - método alternativo */
.about-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    display: block;
    opacity: 1;
}

/* Overlay para legibilidade */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.3) 60%,
        rgba(0, 0, 0, 0.7) 80%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 2;
}

/* Seção reversa - texto à esquerda, imagem à direita */
.about-section-reverse .about-bg-image {
    object-position: 80% center;
}

.about-section-reverse::before {
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0.98) 0%,
        rgba(0, 0, 0, 0.95) 15%,
        rgba(0, 0, 0, 0.85) 30%,
        rgba(0, 0, 0, 0.6) 45%,
        rgba(0, 0, 0, 0.3) 55%,
        transparent 65%,
        transparent 100%
    );
}

.about-content-left {
    text-align: left;
    max-width: 550px;
    margin-left: 2rem !important;
    margin-right: auto !important;
}

.about-content-left .about-header,
.about-content-left .about-text-content,
.about-content-left .about-quote {
    text-align: left;
}

@media (max-width: 1023px) {
    .about-content-left {
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center;
    }
    
    .about-content-left .about-header,
    .about-content-left .about-text-content,
    .about-content-left .about-quote {
        text-align: center;
    }
}

.about-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, hsl(var(--deep-black)), hsl(var(--muted)));
}

.about-deco {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
    animation: float 8s ease-in-out infinite;
}

.about-deco-1 {
    top: 25%;
    left: 10%;
    width: 12rem;
    height: 12rem;
    background-color: hsl(var(--terracotta) / 0.1);
}

.about-deco-2 {
    bottom: 25%;
    right: 10%;
    width: 16rem;
    height: 16rem;
    background-color: hsl(var(--olive) / 0.1);
    animation-delay: 2s;
}

.about-container {
    position: relative;
    z-index: 10;
}

.about-content {
    text-align: center;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: hsl(var(--warm-white));
    line-height: 1.2;
}

@media (min-width: 768px) {
    .about-title {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .about-title {
        font-size: 5rem;
    }
}

.title-main {
    color: hsl(var(--warm-white));
}

.section-line {
    height: 0.25rem;
    width: 6rem;
    background: var(--gradient-hero);
    margin: 0 auto 3rem auto;
}


/* New About Centered Layout */
.about-content-centered {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 20;
    max-width: 600px;
    margin-left: auto;
    margin-right: 2rem;
    text-align: left;
}

@media (max-width: 1023px) {
    .about-content-centered {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }
}


.about-header {
    margin-bottom: 1.5rem;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.about-subtitle {
    display: block;
    font-size: 1rem;
    color: hsl(var(--terracotta));
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.about-main-title {
    display: block;
    font-size: 2rem;
    color: hsl(var(--warm-white));
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    position: relative;
}

.about-main-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, hsl(var(--terracotta)), hsl(var(--olive-light)));
    border-radius: 2px;
}

@media (min-width: 768px) {
    .about-main-title {
        font-size: 2.5rem;
    }
    
    .about-main-title::after {
        width: 120px;
        height: 4px;
    }
}

@media (min-width: 1024px) {
    .about-main-title {
        font-size: 3rem;
    }
    
    .about-main-title::after {
        width: 150px;
        height: 4px;
    }
}

.about-text-content {
    padding: 2rem 0;
}

.about-description {
    font-size: 1rem;
    line-height: 1.8;
    color: hsl(var(--warm-white));
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    position: relative;
    padding-left: 1.5rem;
}

.about-description::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, hsl(var(--terracotta)), hsl(var(--olive-light)));
    border-radius: 2px;
}

@media (min-width: 768px) {
    .about-description {
        font-size: 1.125rem;
    }
}

/* About Quote */
.about-quote {
    margin-top: 2rem;
    padding: 1.5rem;
    position: relative;
    text-align: center;
    backdrop-filter: blur(2px);
    border-radius: 12px;
    border: 1px solid hsl(var(--terracotta) / 0.3);
    background: linear-gradient(135deg, 
        hsl(var(--deep-black) / 0.4), 
        hsl(var(--terracotta) / 0.1));
}

.quote-icon {
    display: none;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--terracotta-light));
    font-style: italic;
    line-height: 1.5;
    margin: 0;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    position: relative;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.quote-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -15px;
    font-size: 3rem;
    color: hsl(var(--olive-light));
    font-family: serif;
    opacity: 0.7;
}

.quote-text::after {
    content: '"';
    position: absolute;
    bottom: -20px;
    right: -15px;
    font-size: 3rem;
    color: hsl(var(--olive-light));
    font-family: serif;
    opacity: 0.7;
}

@media (min-width: 768px) {
    .quote-text {
        font-size: 1.5rem;
        max-width: 100%;
    }
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.features-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, hsl(var(--deep-black)), hsl(var(--muted)), hsl(var(--deep-black)));
}

.features-line {
    position: absolute;
    width: 100%;
    height: 1px;
}

.features-line-top {
    top: 0;
    left: 0;
    background: var(--gradient-terracotta);
}

.features-line-bottom {
    bottom: 0;
    right: 0;
    background: var(--gradient-olive);
}

.features-container {
    position: relative;
    z-index: 10;
}

.features-header {
    text-align: center;
    margin-bottom: 5rem;
}

.features-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .features-title {
        font-size: 4rem;
    }
}

.title-line1 {
    color: hsl(var(--warm-white));
}

.title-line2 {
    color: hsl(var(--terracotta));
}

.title-line3 {
    color: hsl(var(--olive-light));
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1750px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    position: relative;
    background-color: hsl(var(--card) / 0.3);
    backdrop-filter: blur(4px);
    border: 1px solid hsl(var(--border));
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-dramatic);
}

.feature-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.feature-gradient {
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    opacity: 0.05;
    transition: opacity 0.5s ease;
}

.feature-card:hover .feature-gradient {
    opacity: 0.1;
}

.feature-gradient-terracotta {
    background: var(--gradient-terracotta);
}

.feature-gradient-olive {
    background: var(--gradient-olive);
}

.feature-gradient-hero {
    background: var(--gradient-hero);
}

.feature-icon-container {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon-wrapper {
    padding: 1rem;
    border-radius: 1rem;
    background-color: hsl(var(--background));
    border: 2px solid hsl(var(--border) / 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background-color: hsl(var(--background));
    border-color: hsl(var(--border) / 0.5);
    transform: scale(1.1);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 2rem;
}

.icon-heart {
    color: white;
    stroke-width: 2.5;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.icon-star {
    color: white;
    stroke-width: 2.5;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.icon-shield {
    color: white;
    stroke-width: 2.5;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.feature-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: hsl(var(--warm-white));
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .feature-title {
        font-size: 2rem;
    }
}

.feature-card:hover .feature-title {
    color: hsl(var(--terracotta-light));
}

.feature-description {
    color: hsl(var(--muted-foreground));
    line-height: 1.75;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-description {
    color: hsl(var(--foreground) / 0.9);
}

.feature-corner {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 0.75rem;
    height: 0.75rem;
    background-color: hsl(var(--terracotta));
    border-radius: 50%;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-corner {
    opacity: 1;
    transform: scale(1.5);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 5%;
    width: 350px;
    height: 350px;
    background-image: url('../images/identidade visual/4. SUBLOGO MARCA D_AGUA.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    pointer-events: none;
    z-index: 2;
    filter: brightness(1.4);
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -8%;
    left: -3%;
    width: 320px;
    height: 320px;
    background-image: url('../images/identidade visual/12. PATTERN.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
    transform: rotate(-20deg);
}

.testimonials-background {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.testimonials-overlay {
    position: absolute;
    inset: 0;
    background-color: hsl(var(--deep-black) / 0.6);
}

.testimonials-decos {
    position: absolute;
    inset: 0;
}

.testimonial-deco {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
    animation: float 6s ease-in-out infinite;
}

.testimonial-deco-1 {
    top: 25%;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    background-color: hsl(var(--terracotta) / 0.2);
}

.testimonial-deco-2 {
    bottom: 25%;
    right: 2.5rem;
    width: 10rem;
    height: 10rem;
    background-color: hsl(var(--olive) / 0.2);
    animation-delay: 1s;
}

.testimonials-container {
    position: relative;
    z-index: 10;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive testimonials */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        max-width: 100%;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .testimonials-title {
        font-size: 4rem;
    }
}


.testimonial-card {
    position: relative;
    background-color: hsl(var(--card) / 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid hsl(var(--border));
    border-radius: 0.25rem 0.25rem 1.5rem 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-dramatic);
    transition: all 0.5s ease;
    width: 100%;
    box-sizing: border-box;
}

.testimonial-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.quote-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.quote-icon-wrapper {
    padding: 1rem;
    background: var(--gradient-terracotta);
    border-radius: 1rem;
    box-shadow: var(--shadow-terracotta);
    transition: all 0.3s ease;
}

.testimonial-card:hover .quote-icon-wrapper {
    box-shadow: var(--shadow-glow);
}

.quote-icon {
    width: 2rem;
    height: 2rem;
    color: white;
}

.rating-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--accent-gold));
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.75;
    color: hsl(var(--warm-white));
    margin-bottom: 2rem;
    font-style: italic;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

@media (min-width: 768px) {
    .testimonial-text {
        font-size: 1.5rem;
    }
}

.testimonial-author {
    text-align: center;
}

.author-name {
    color: hsl(var(--terracotta-light));
    font-weight: 700;
    font-size: 1.125rem;
    font-style: normal;
}

.testimonial-dot {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-dot {
    opacity: 1;
}

.testimonial-dot-1 {
    top: 1.5rem;
    left: 1.5rem;
    width: 0.5rem;
    height: 0.5rem;
    background-color: hsl(var(--olive));
}

.testimonial-dot-2 {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 0.75rem;
    height: 0.75rem;
    background-color: hsl(var(--terracotta) / 0.6);
    transition: background-color 0.3s ease;
}

.testimonial-card:hover .testimonial-dot-2 {
    background-color: hsl(var(--terracotta));
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    background: var(--gradient-dramatic);
}

.cta-grid {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 1px 1px, hsl(var(--terracotta)) 1px, transparent 0);
    background-size: 50px 50px;
}

.cta-container {
    position: relative;
    z-index: 10;
}

.cta-content {
    max-width: 5xl;
    margin: 0 auto;
    text-align: center;
}

.urgency-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.urgency-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: hsl(var(--terracotta) / 0.2);
    backdrop-filter: blur(4px);
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid hsl(var(--terracotta) / 0.3);
}

.urgency-badge-olive {
    background-color: hsl(var(--olive) / 0.2);
    border: 1px solid hsl(var(--olive) / 0.3);
}

.urgency-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.urgency-badge .urgency-icon {
    color: hsl(var(--terracotta));
}

.urgency-badge-olive .urgency-icon {
    color: hsl(var(--olive-light));
}

.urgency-text {
    font-weight: 600;
}

.urgency-badge .urgency-text {
    color: hsl(var(--terracotta));
}

.urgency-badge-olive .urgency-text {
    color: hsl(var(--olive-light));
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 4rem;
    }
}

.title-part1 {
    color: hsl(var(--warm-white));
}

.title-part2 {
    color: hsl(var(--terracotta-light));
}

.title-part3 {
    color: hsl(var(--warm-white));
}

.title-part4 {
    color: hsl(var(--olive-light));
}

.cta-description {
    font-size: 1.25rem;
    line-height: 1.75;
    margin-bottom: 3rem;
    color: hsl(var(--muted-foreground));
    max-width: 4xl;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .cta-description {
        font-size: 1.5rem;
    }
}

.cta-card {
    background-color: hsl(var(--card) / 0.5);
    backdrop-filter: blur(16px);
    border: 1px solid hsl(var(--border));
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: var(--shadow-dramatic);
    margin-bottom: 3rem;
}

.cta-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--terracotta));
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-card-title {
        font-size: 2.5rem;
    }
}

.cta-card-description {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 2.5rem;
    max-width: 3xl;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-button {
    background: var(--gradient-terracotta);
    color: white;
    padding: 2rem 4rem;
    font-size: 1.5rem;
    font-weight: 700;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-terracotta);
}

.final-cta-button:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.final-cta-icon {
    width: 2rem;
    height: 2rem;
}

.final-cta-button:hover .final-cta-icon {
    animation: pulse 1s infinite;
}

.trust-elements {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 4xl;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .trust-elements {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: hsl(var(--muted-foreground));
}

.trust-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.trust-dot-terracotta {
    background-color: hsl(var(--terracotta));
    animation: pulse 2s infinite;
}

.trust-dot-olive {
    background-color: hsl(var(--olive));
    animation: pulse 2s infinite;
    animation-delay: 0.2s;
}

.trust-dot-gold {
    background-color: hsl(var(--accent-gold));
    animation: pulse 2s infinite;
    animation-delay: 0.4s;
}

.trust-text {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Contact Form Alternative */
.contact-alternative {
    margin-top: 3rem;
}

/* Trust Elements in Form */
.trust-elements-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, hsl(var(--terracotta) / 0.05), hsl(var(--olive) / 0.05));
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
}

@media (min-width: 768px) {
    .trust-elements-form {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* WhatsApp Alternative Section */
.whatsapp-alternative {
    margin-top: 3rem;
}

.alternative-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.alternative-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, hsl(var(--border)), transparent);
}

.divider-text {
    background: hsl(var(--deep-black));
    padding: 0 1rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: hsl(var(--warm-white));
    text-align: center;
    margin-bottom: 0.5rem;
}

.form-description {
    color: hsl(var(--muted-foreground));
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}


.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--warm-white));
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input {
    background: hsl(var(--input));
    border: 1px solid hsl(var(--border));
    border-radius: 0.75rem;
    padding: 1rem;
    font-size: 1rem;
    color: hsl(var(--foreground));
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: hsl(var(--terracotta));
    box-shadow: 0 0 0 2px hsl(var(--terracotta) / 0.2);
    background: hsl(var(--card));
}

.form-input::placeholder {
    color: hsl(0 0% 70%);
}

.form-submit {
    margin-top: 1rem;
    text-align: center;
}

.form-button {
    background: var(--gradient-terracotta);
    color: white;
    border: none;
    border-radius: 3rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-terracotta);
}

.form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 80px -20px hsl(var(--terracotta) / 0.6);
}

.form-button:active {
    transform: translateY(0);
}

.form-button-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Index Form Styles */
.index-form {
    background: linear-gradient(135deg, hsl(var(--card)), hsl(20 8% 14%));
    border: 1px solid hsl(var(--border));
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-dramatic);
    backdrop-filter: blur(10px);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    overflow: hidden; /* Previne elementos saindo */
}

.index-contact-form {
    max-width: 1000px;
    margin: 0 auto;
    background: hsl(0 0% 5%);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-terracotta);
    box-sizing: border-box;
    overflow: hidden; /* Previne elementos saindo */
}

.index-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.index-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.index-form-group.index-full-width {
    grid-column: 1 / -1;
}

.index-form-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: hsl(0 0% 100%);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required-asterisk {
    color: hsl(var(--terracotta));
    margin-left: 0.25rem;
    font-weight: 700;
}

.form-required-note {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    color: hsl(0 0% 70%);
    margin-top: 1rem;
    margin-bottom: 0;
    text-align: right;
}

.index-form-input,
.index-form-select,
.index-form-textarea {
    padding: 1rem;
    background: hsl(0 0% 12%);
    border: 1px solid hsl(0 0% 35%);
    border-radius: 0.5rem;
    color: hsl(0 0% 100%);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.index-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' 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 1rem center;
    background-size: 20px;
    padding-right: 3rem;
    cursor: pointer;
}

.index-form-select option {
    background: hsl(0 0% 12%);
    color: hsl(0 0% 100%);
    padding: 0.5rem;
}

.index-form-select option:first-child {
    color: hsl(0 0% 70%);
}

.index-form-select option:checked {
    background: hsl(210 100% 50%);
    color: hsl(0 0% 100%);
}

.index-form-input:focus,
.index-form-select:focus,
.index-form-textarea:focus {
    outline: none;
    border-color: hsl(var(--terracotta));
    box-shadow: 0 0 0 3px hsl(var(--terracotta) / 0.1);
}

.index-form-input::placeholder,
.index-form-textarea::placeholder {
    color: hsl(0 0% 70%);
}

.index-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.index-form-radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0rem;
}

.index-form-radio-label {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    padding: 1.5rem 1.75rem;
    background: hsl(0 0% 12%);
    border: 1px solid hsl(0 0% 35%);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    min-height: 4rem;
}

.index-form-radio-label:hover {
    border-color: hsl(0 0% 50%);
    background: hsl(0 0% 14%);
}

.index-form-radio {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid hsl(0 0% 50%);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin: 0;
}

.index-form-radio:checked {
    border-color: hsl(0 0% 60%);
    border-width: 6px;
}

.index-form-radio:hover {
    border-color: hsl(0 0% 60%);
}

.index-form-radio-text {
    color: hsl(0 0% 100%);
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    flex: 1;
    line-height: 1.5;
}

.index-form-actions {
    margin-top: 2rem;
    text-align: center;
}

.index-form-submit-button {
    background: linear-gradient(135deg, hsl(var(--terracotta)), hsl(var(--terracotta-dark)));
    color: hsl(var(--primary-foreground));
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 3rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px hsl(var(--terracotta) / 0.3);
}

.index-form-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px hsl(var(--terracotta) / 0.4);
    filter: brightness(1.1);
}

.index-button-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Moments Gallery Section */
.moments-gallery-section {
    padding: 6rem 0;
    background: hsl(var(--deep-black));
    position: relative;
    overflow: hidden;
}

.moments-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.moments-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, hsl(var(--terracotta) / 0.08), transparent 50%),
                radial-gradient(circle at 80% 70%, hsl(var(--olive) / 0.06), transparent 50%);
}

.moments-container {
    position: relative;
    z-index: 10;
}

.moments-header {
    text-align: center;
    margin-bottom: 4rem;
}

.moments-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.moments-title .title-line1 {
    color: hsl(var(--warm-white));
}

.moments-title .title-line2 {
    color: hsl(var(--terracotta));
}

.moments-subtitle {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    max-width: 600px;
    margin: 2rem auto 0;
    line-height: 1.6;
}

.moments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.moment-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    aspect-ratio: 1;
}

.moment-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 80px -20px hsl(var(--terracotta) / 0.4);
}

.moment-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.moment-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease;
}

.moment-item:hover .moment-image {
    transform: scale(1.05);
}

.moment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, hsl(var(--terracotta) / 0.2), hsl(var(--olive) / 0.1));
    opacity: 0;
    transition: all 0.4s ease;
}

.moment-item:hover .moment-overlay {
    opacity: 1;
}

/* Grid Layout Responsive */
@media (min-width: 768px) {
    .moments-grid {
        gap: 1.5rem;
        max-width: 800px;
    }
}

@media (min-width: 1024px) {
    .moments-title {
        font-size: 3rem;
    }
    
    .moments-grid {
        gap: 2rem;
        max-width: 900px;
    }
}

@media (max-width: 767px) {
    .moments-gallery-section {
        padding: 4rem 0;
    }
    
    .moments-title {
        font-size: 2rem;
    }
    
    .moments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .moments-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 1rem;
    }
}

/* Index Form Responsive */
@media (max-width: 768px) {
    .index-form {
        padding: 1.5rem !important;
        margin: 0 1rem !important;
    }
    
    .index-form-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .index-contact-form {
        padding: 1.5rem !important;
        margin: 0 !important;
        max-width: 100% !important;
    }
    
    .index-form-input,
    .index-form-select,
    .index-form-textarea {
        padding: 1rem !important;
        font-size: 16px !important; /* Previne zoom no iOS */
        min-height: 3.5rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .index-form-radio-label {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .index-form-radio-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .index-form {
        padding: 1rem !important;
        margin: 0 0.5rem !important;
    }
    
    .index-contact-form {
        padding: 1rem !important;
        margin: 0 !important;
    }
    
    .index-form-grid {
        gap: 1.5rem;
    }
    
    .index-form-input,
    .index-form-select,
    .index-form-textarea {
        padding: 0.875rem !important;
        font-size: 16px !important;
        min-height: 3rem !important;
    }
    
    .index-form-radio-label {
        padding: 1rem 1.25rem;
        gap: 1rem;
    }
    
    .index-form-radio {
        width: 20px;
        height: 20px;
    }
    
    .index-form-radio-text {
        font-size: 0.9375rem;
    }
}

/* Form Messages */
.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
}

.form-message-success {
    background: linear-gradient(135deg, hsl(142 76% 36% / 0.1), hsl(142 76% 36% / 0.05));
    color: hsl(142 76% 36%);
    border: 1px solid hsl(142 76% 36% / 0.2);
}

.form-message-error {
    background: linear-gradient(135deg, hsl(0 84.2% 60.2% / 0.1), hsl(0 84.2% 60.2% / 0.05));
    color: hsl(0 84.2% 60.2%);
    border: 1px solid hsl(0 84.2% 60.2% / 0.2);
}

/* Spinning animation for loading */
.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Image Quality Enhancement */
img {
    image-rendering: auto;
    max-width: 100%;
    height: auto;
}

/* Custom Cursor - Elegant Ceremony Microphone */
*, 
*:before, 
*:after {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23E8744B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L19 4"/><path d="m21 2-9.6 9.6"/><circle cx="7.5" cy="15.5" r="5.5"/></svg>') 12 12, auto !important;
}

/* Enhanced cursor for interactive elements */
button, 
a, 
input, 
textarea, 
select,
[onclick] {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23E8744B" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L19 4"/><path d="m21 2-9.6 9.6"/><circle cx="7.5" cy="15.5" r="5.5" fill="%23E8744B" fill-opacity="0.2"/></svg>') 12 12, pointer !important;
}

/* Custom Text Selection Colors */
::selection {
    background: hsl(var(--terracotta) / 0.3);
    color: hsl(var(--warm-white));
    text-shadow: none;
}

::-moz-selection {
    background: hsl(var(--terracotta) / 0.3);
    color: hsl(var(--warm-white));
    text-shadow: none;
}

/* Enhanced selection for specific elements */
h1::selection,
h2::selection,
h3::selection,
.hero-title::selection,
.about-title::selection {
    background: hsl(var(--terracotta) / 0.4);
    color: hsl(var(--warm-white));
}

h1::-moz-selection,
h2::-moz-selection,
h3::-moz-selection,
.hero-title::-moz-selection,
.about-title::-moz-selection {
    background: hsl(var(--terracotta) / 0.4);
    color: hsl(var(--warm-white));
}

/* Selection for highlighted text elements */
.text-terracotta::selection,
.text-olive-light::selection,
.quote-text::selection {
    background: hsl(var(--olive) / 0.25);
    color: hsl(var(--warm-white));
}

.text-terracotta::-moz-selection,
.text-olive-light::-moz-selection,
.quote-text::-moz-selection {
    background: hsl(var(--olive) / 0.25);
    color: hsl(var(--warm-white));
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: hsl(var(--deep-black));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: hsl(var(--terracotta));
    border-radius: 6px;
    border: 2px solid hsl(var(--deep-black));
}

::-webkit-scrollbar-thumb:hover {
    background: hsl(var(--terracotta-light));
}

/* Firefox scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: hsl(var(--terracotta)) hsl(var(--deep-black));
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, hsl(var(--deep-black)), hsl(20 8% 12%));
    padding: 10rem 0 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, hsl(var(--terracotta) / 0.1), transparent),
                radial-gradient(circle at 80% 80%, hsl(var(--olive) / 0.1), transparent);
}

.page-header::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 5%;
    width: 350px;
    height: 350px;
    background-image: url('../images/identidade visual/4. SUBLOGO MARCA D_AGUA.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
    filter: brightness(1.4);
}

.page-header-content {
    position: relative;
    z-index: 10;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--warm-white));
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .page-title {
        font-size: 3.5rem;
    }
}

.page-subtitle {
    font-size: 1.25rem;
    color: hsl(var(--terracotta-light));
    font-weight: 500;
}

/* About Page Styles */
.about-page-section {
    padding: 5rem 0;
    background: hsl(var(--deep-black));
    position: relative;
    overflow: hidden;
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .about-page-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 5rem;
    }
}

/* Image Section */
.about-page-image {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.celebrant-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 600px;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-dramatic);
}

.celebrant-images-grid-gabriela {
    margin-top: 0;
}

.celebrant-photo {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background: hsl(var(--card));
    min-height: 240px;
}

.celebrant-photo:hover {
    transform: scale(1.02);
    z-index: 2;
}

.grid-celebrant-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: all 0.3s ease;
}

.celebrant-photo:hover .grid-celebrant-image {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, hsl(var(--terracotta) / 0.3), hsl(var(--olive) / 0.2));
    opacity: 0;
    transition: all 0.3s ease;
}

.celebrant-photo:hover .photo-overlay {
    opacity: 1;
}

/* Celebrant Grid Responsive */
@media (max-width: 768px) {
    .celebrant-images-grid {
        height: 500px;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .celebrant-images-grid {
        height: 400px;
        gap: 0.75rem;
    }
    
    .celebrant-photo {
        min-height: 190px;
    }
    
    .celebrant-photo:hover {
        transform: none;
    }
    
    .celebrant-photo:hover .grid-celebrant-image {
        transform: none;
    }
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, hsl(var(--terracotta)), hsl(var(--olive-light)));
    border-radius: 50%;
    opacity: 0.8;
    z-index: -1;
}

/* Content Section */
.about-page-content {
    color: hsl(var(--warm-white));
    display: flex;
    flex-direction: column;
    align-items: center;
}

.story-block {
    margin-bottom: 3rem;
    width: 100%;
}

.story-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: hsl(var(--terracotta));
    margin-bottom: 1rem;
    position: relative;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, hsl(var(--terracotta)), hsl(var(--olive-light)));
    border-radius: 2px;
}

.story-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: hsl(var(--muted-foreground));
}

.story-cta {
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    padding: 2.5rem;
    background: linear-gradient(135deg, 
        hsl(var(--card)), 
        hsl(20 8% 14%));
    border-radius: 1.5rem;
    border: 1px solid hsl(var(--terracotta) / 0.3);
    text-align: center;
}

.cta-text {
    font-size: 1.25rem;
    color: hsl(var(--warm-white));
    margin-bottom: 2rem;
    font-weight: 500;
}

.story-cta-button {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.story-cta-button .cta-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-grid {
        padding: 9rem 0 2rem 0 !important;
        gap: 2rem !important;
        min-height: auto !important;
        height: auto !important;
        align-items: flex-start !important;
    }
    
    .hero-content {
        padding-top: 0.5rem;
    }
    
    .hero-title {
        font-size: 1.6rem !important;
        margin-top: 0.5rem !important;
        margin-bottom: 1.25rem !important;
        line-height: 1.35 !important;
        padding: 0 0.5rem !important;
    }
    
    .hero-subtitle {
        font-style: normal !important;
        display: block !important;
    }
    
    .hero-image {
        height: 20rem;
    }
    
    .hero-brand {
        margin-bottom: 0.75rem;
    }
    
    .about-title,
    .features-title,
    .testimonials-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .feature-card,
    .testimonial-card,
    .cta-card {
        padding: 1.5rem;
    }
    
    .final-cta-button {
        padding: 1.5rem 2rem;
        font-size: 1.125rem;
    }
    
    .testimonial-text {
        font-size: 1.125rem;
    }
}

/* =====================================================
   Services Page - New Sections
   ===================================================== */

.services-highlight-secondary {
    background: hsl(0 0% 8%);
    margin-top: 4rem;
}

.highlight-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: hsl(var(--terracotta));
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

/* Service Packages */
.service-packages {
    padding: 4rem 0;
    background: hsl(0 0% 5%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.package-card {
    background: hsl(0 0% 10%);
    border: 1px solid hsl(0 0% 20%);
    border-radius: 1rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.package-card:hover {
    border-color: hsl(var(--terracotta));
    transform: translateY(-4px);
    box-shadow: 0 10px 30px hsl(0 0% 0% / 0.3);
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid hsl(0 0% 20%);
}

.package-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(var(--terracotta)), hsl(var(--terracotta-dark)));
    border-radius: 50%;
}

.package-icon svg {
    width: 30px;
    height: 30px;
    stroke: hsl(0 0% 100%);
}

.package-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: hsl(0 0% 100%);
    margin-bottom: 0.5rem;
}

.package-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: hsl(var(--terracotta));
    font-style: italic;
}

.package-description {
    margin-bottom: 2rem;
}

.package-description p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: hsl(0 0% 85%);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: hsl(0 0% 90%);
}

.package-features li:last-child {
    margin-bottom: 0;
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke: hsl(var(--terracotta));
    margin-top: 0.25rem;
}

.package-features strong {
    color: hsl(0 0% 100%);
}

/* Service Differential */
.service-differential {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, hsl(var(--terracotta) / 0.1), hsl(var(--olive) / 0.1));
    border: 1px solid hsl(var(--terracotta) / 0.3);
    border-radius: 1rem;
}

.differential-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(var(--terracotta)), hsl(var(--terracotta-dark)));
    border-radius: 50%;
}

.differential-icon svg {
    width: 35px;
    height: 35px;
    stroke: hsl(0 0% 100%);
}

.differential-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: hsl(0 0% 100%);
    margin-bottom: 1rem;
}

.differential-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: hsl(0 0% 90%);
}

/* Responsive - Service Packages */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .package-card {
        padding: 2rem;
    }
    
    .package-title {
        font-size: 1.5rem;
    }
    
    .service-differential {
        padding: 2rem;
    }
    
    .differential-title {
        font-size: 1.5rem;
    }
    
    .differential-description {
        font-size: 1rem;
    }
    
    .highlight-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .package-card {
        padding: 1.5rem;
    }
    
    .package-features li {
        font-size: 0.9rem;
    }
    
    .service-differential {
        padding: 1.5rem;
    }
}

/* ================================
   OTIMIZAÇÕES MÓVEIS COMPLETAS
   ================================ */

@media (max-width: 768px) {
    /* Correção de overflow geral */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    /* Container geral com padding nas laterais */
    .container {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }
    
    /* Formulário - evita saída do card */
    .contact-form {
        padding: 1.5rem !important;
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Container da seção de formulário */
    .contact-form-section .container {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
    
    .form-grid {
        gap: 1.5rem !important;
        width: 100% !important;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 1rem !important;
        font-size: 16px !important; /* Previne zoom no iOS */
        border-width: 1px !important;
        margin: 0 !important;
    }
    
    .form-textarea {
        min-height: 100px !important;
        resize: vertical !important;
    }
    
    /* Inputs do formulário index */
    .index-form-input,
    .index-form-select,
    .index-form-textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 1rem !important;
        font-size: 16px !important;
        border-width: 1px !important;
        margin: 0 !important;
    }
    
    /* Inputs de data e hora específicos */
    input[type="date"],
    input[type="time"],
    input[type="datetime-local"] {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 1rem !important;
        font-size: 16px !important;
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        appearance: none !important;
    }
    
    .index-form-textarea {
        min-height: 100px !important;
        resize: vertical !important;
    }
    
    /* Títulos responsivos */
    h1, .hero-title, .title-line1, .title-line2, .title-line3 {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
        word-wrap: break-word !important;
        padding: 0 1rem !important;
    }
    
    h2, .section-title, .testimonials-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        padding: 0 1rem !important;
    }
    
    h3 {
        font-size: 1.25rem !important;
        padding: 0 0.5rem !important;
    }
    
    /* Títulos de páginas internas */
    .page-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        padding: 0 1rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .page-subtitle {
        font-size: 1.1rem !important;
        padding: 0 1rem !important;
        line-height: 1.4 !important;
    }
    
    .page-header {
        padding: 8rem 0 3rem 0 !important;
    }
    
    /* Cards responsivos */
    .service-card,
    .package-card,
    .index-form,
    .contact-form {
        margin: 0 1rem !important;
        max-width: calc(100vw - 2rem) !important;
        box-sizing: border-box !important;
        padding: 1.5rem !important;
    }
    
    /* Cards de testemunho fora do carrossel */
    .testimonials-section .testimonial-card {
        margin: 0 1rem !important;
        max-width: calc(100vw - 2rem) !important;
        padding: 1.5rem !important;
    }
    
    /* Cards de testemunho NO carrossel - não forçar margins/widths */
    .testimonials-carousel .testimonial-card {
        margin: 0 !important;
        max-width: none !important;
        min-width: 100% !important;
        flex: 0 0 100% !important;
        width: 100% !important;
    }
    
    /* Carrossel wrapper e container */
    .testimonials-carousel-container {
        overflow: visible !important;
        max-width: 95% !important;
    }
    
    .carousel-wrapper {
        overflow: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
    }
    
    .testimonials-carousel {
        display: flex !important;
        width: 100% !important;
        max-width: none !important;
        flex-wrap: nowrap !important;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    }
    
    /* Container da página de depoimentos não deve limitar */
    .testimonials-page-section .container {
        overflow: visible !important;
    }
    
    /* Imagens responsivas - previne corte */
    img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
    }
    
    .hero-image img,
    .about-image img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
    
    /* Seções com padding reduzido */
    section {
        padding: 3rem 0 !important;
    }
    
    .hero-section {
        min-height: auto !important;
        height: auto !important;
        padding-bottom: 2rem !important;
    }
    
    /* Botões responsivos */
    .cta-button,
    .form-submit-button,
    .form-button {
        width: auto !important;
        max-width: 100% !important;
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
        white-space: nowrap !important;
    }
    
    /* Grid responsivo */
    .grid,
    .service-grid,
    .package-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .package-card {
        padding: 1.5rem;
    }
    
    .package-features li {
        font-size: 0.9rem;
    }
    
    .service-differential {
        padding: 1.5rem;
    }
    
    /* Ajustes extras para telas muito pequenas */
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    /* Container da seção de formulário - telas pequenas */
    .contact-form-section .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .contact-form,
    .index-form,
    .service-card,
    .package-card {
        padding: 1rem !important;
        margin: 0 auto !important;
        max-width: calc(100vw - 2rem) !important;
    }
    
    /* Cards de testemunho fora do carrossel */
    .testimonials-section .testimonial-card {
        padding: 1rem !important;
        margin: 0 0.5rem !important;
        max-width: calc(100vw - 1rem) !important;
    }
    
    /* Cards de testemunho NO carrossel */
    .testimonials-carousel .testimonial-card {
        margin: 0 !important;
        max-width: none !important;
        min-width: 100% !important;
        width: 100% !important;
        flex: 0 0 100% !important;
        padding: 2rem !important;
    }
    
    /* Carrossel wrapper e container - telas pequenas */
    .testimonials-carousel-container {
        overflow: visible !important;
    }
    
    .carousel-wrapper {
        overflow: hidden !important;
    }
    
    .testimonials-carousel {
        display: flex !important;
        max-width: none !important;
        flex-wrap: nowrap !important;
    }
    
    h1, .hero-title {
        font-size: 1.5rem !important;
        padding: 0 0.5rem !important;
    }
    
    h2, .section-title {
        font-size: 1.35rem !important;
        padding: 0 0.5rem !important;
    }
    
    h3 {
        font-size: 1.1rem !important;
    }
    
    /* Títulos de páginas internas - telas pequenas */
    .page-title {
        font-size: 1.75rem !important;
        padding: 0 0.5rem !important;
    }
    
    .page-subtitle {
        font-size: 1rem !important;
        padding: 0 0.5rem !important;
    }
    
    .page-header {
        padding: 7rem 0 2.5rem 0 !important;
    }
    
    .form-input,
    .form-select,
    .form-textarea,
    .index-form-input,
    .index-form-select,
    .index-form-textarea {
        padding: 0.875rem !important;
        font-size: 16px !important;
    }
    
    /* Inputs de data e hora específicos - telas pequenas */
    input[type="date"],
    input[type="time"],
    input[type="datetime-local"] {
        padding: 0.875rem !important;
        font-size: 16px !important;
    }
    
    .cta-button,
    .form-submit-button {
        padding: 0.875rem 1.5rem !important;
        font-size: 0.95rem !important;
    }
}
