/* ===================================
   TERESA REGULARIZA - LANDING PAGE
   Design: Clean, Moderno e Profissional
   Paleta: #C9A227 (Dourado) | #0A2647 (Azul Marinho) | #E8DCC4 (Bege)
   =================================== */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #C9A227;
    --secondary-color: #0A2647;
    --tertiary-color: #E8DCC4;
    --success-color: #28a745;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--white);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background-image: url('imagemdahead.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 38, 71, 0.94), rgba(10, 38, 71, 0.88));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.hero-logo .logo-image {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    animation: fadeIn 1.2s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

/* ===================================
   CTA BUTTONS
   =================================== */

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), #F5C842);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.5);
    color: var(--white);
    text-decoration: none;
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-button-light {
    background: var(--white);
    color: var(--secondary-color);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.cta-button-light:hover {
    background: var(--tertiary-color);
    color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.cta-center {
    text-align: center;
    padding: 40px 0;
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

/* ===================================
   ORÇAMENTO SECTION
   =================================== */

.orcamento-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--tertiary-color) 100%);
}

.orcamento-exemplo {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 40px;
    animation: fadeInUp 0.8s ease-out;
}

.orcamento-header {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.orcamento-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.orcamento-card {
    background: linear-gradient(135deg, #fafafa 0%, var(--white) 100%);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--tertiary-color);
}

.orcamento-item {
    margin-bottom: 20px;
}

.orcamento-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 8px;
}

.orcamento-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.orcamento-value {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.orcamento-value .economia {
    color: var(--success-color);
    font-size: 1.125rem;
    font-weight: 600;
    display: inline-block;
    margin-left: 8px;
}

.orcamento-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--tertiary-color), transparent);
    margin: 25px 0;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(10, 38, 71, 0.05));
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.orcamento-value-receita {
    font-size: 1.75rem;
    font-weight: 800;
    color: #dc3545;
    margin-top: 8px;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services-section {
    padding: 80px 20px;
    background: var(--white);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--tertiary-color);
}

.service-icon {
    margin-bottom: 25px;
}

.service-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), #144272);
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(10, 38, 71, 0.3);
}

.service-card:hover .service-number {
    background: linear-gradient(135deg, var(--primary-color), #F5C842);
    transform: rotate(360deg) scale(1.1);
}

.service-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-subtitle {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ===================================
   VIDEO SECTION
   =================================== */

.video-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--tertiary-color) 0%, #f8f9fa 100%);
}

.video-wrapper {
    display: flex;
    justify-content: center;
}

.video-container {
    max-width: 600px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #000;
    transition: var(--transition);
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about-section {
    padding: 80px 20px;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    animation: fadeInLeft 0.8s ease-out;
}

.specialist-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.about-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--tertiary-color) 100%);
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
    animation: fadeInUp 0.8s ease-out;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.testimonial-card:hover .stars {
    transform: scale(1.1);
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--tertiary-color);
    position: absolute;
    top: -15px;
    left: -10px;
    font-family: Georgia, serif;
}

.testimonial-author {
    border-top: 2px solid var(--tertiary-color);
    padding-top: 15px;
}

.author-name {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.author-location {
    font-size: 0.9375rem;
    color: var(--text-light);
}

/* ===================================
   BENEFITS SECTION
   =================================== */

.benefits-section {
    padding: 80px 20px;
    background: var(--white);
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
    animation: fadeInUp 0.8s ease-out;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #F5C842);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.benefit-card:hover .benefit-icon {
    transform: rotate(5deg) scale(1.1);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.benefit-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--tertiary-color) 0%, #f8f9fa 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   WARNING SECTION
   =================================== */

.warning-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--secondary-color), #144272);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.warning-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1), transparent);
    border-radius: 50%;
}

.warning-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.warning-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

.warning-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
}

.warning-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.4;
}

.warning-text {
    font-size: 1.25rem;
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0.95;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    padding: 40px 20px;
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
    opacity: 0.9;
}

.footer-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

/* ===================================
   WHATSAPP FLOATING BUTTON
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s ease-in-out infinite;
}

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

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    color: var(--white);
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Delay animations for staggered effect */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.15s; }
.benefit-card:nth-child(3) { animation-delay: 0.2s; }
.benefit-card:nth-child(4) { animation-delay: 0.25s; }
.benefit-card:nth-child(5) { animation-delay: 0.3s; }
.benefit-card:nth-child(6) { animation-delay: 0.35s; }

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 18px 32px;
        font-size: 1rem;
    }
    
    .services-container,
    .benefits-container {
        grid-template-columns: 1fr;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .orcamento-exemplo {
        padding: 30px 20px;
    }
    
    .orcamento-card {
        padding: 20px;
    }
    
    .warning-title {
        font-size: 1.75rem;
    }
    
    .warning-text {
        font-size: 1.125rem;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
    
    .hero-section {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 16px 28px;
        font-size: 0.9375rem;
    }
    
    .whatsapp-icon {
        width: 20px;
        height: 20px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .orcamento-header {
        font-size: 1.375rem;
    }
    
    .service-card,
    .benefit-card,
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
}



/* ===================================
   NOVOS ESTILOS - OTIMIZAÇÕES
   =================================== */

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 162, 39, 0.2);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 30px;
    animation: fadeIn 1.5s ease-out;
}

.badge-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

/* Hero Stats */
.hero-stats {
    margin-top: 30px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Orçamento Subtitle */
.orcamento-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 500;
}

/* Orçamento Items com Ícones */
.success-item,
.danger-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 8px;
    transition: var(--transition);
}

.success-item {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(40, 167, 69, 0.02));
}

.danger-item {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.08), rgba(220, 53, 69, 0.03));
}

.item-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.item-icon.success {
    background: var(--success-color);
    color: var(--white);
}

.item-icon.danger {
    background: #dc3545;
    color: var(--white);
}

.item-content {
    flex: 1;
}

.economia-destaque {
    color: var(--success-color);
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: 8px;
}

.danger-text {
    color: #dc3545;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 8px;
}

.orcamento-cta-text {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-top: 30px;
}

/* About Section - Novos Elementos */
.about-credential {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-quote {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(10, 38, 71, 0.05));
    border-left: 4px solid var(--primary-color);
    padding: 20px 25px;
    margin: 25px 0;
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-dark);
    border-radius: 8px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 25px 0;
}

.feature-item {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    padding-left: 10px;
}

/* Garantias Section */
.garantias-section {
    padding: 80px 20px;
    background: var(--white);
}

.garantias-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.garantia-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    animation: fadeInUp 0.8s ease-out;
}

.garantia-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.garantia-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #F5C842);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.garantia-icon svg {
    width: 35px;
    height: 35px;
    color: var(--white);
}

.garantia-card:hover .garantia-icon {
    transform: rotate(360deg) scale(1.1);
}

.garantia-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.garantia-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Animações para novos elementos */
.garantia-card:nth-child(1) { animation-delay: 0.1s; }
.garantia-card:nth-child(2) { animation-delay: 0.15s; }
.garantia-card:nth-child(3) { animation-delay: 0.2s; }
.garantia-card:nth-child(4) { animation-delay: 0.25s; }
.garantia-card:nth-child(5) { animation-delay: 0.3s; }

/* Responsividade para novos elementos */
@media (max-width: 768px) {
    .hero-badge {
        font-size: 0.875rem;
        padding: 10px 20px;
    }
    
    .badge-icon {
        width: 18px;
        height: 18px;
    }
    
    .hero-stats {
        font-size: 0.9375rem;
    }
    
    .success-item,
    .danger-item {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .item-icon {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
    
    .about-quote {
        font-size: 1rem;
        padding: 15px 20px;
    }
    
    .garantias-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .orcamento-subtitle {
        font-size: 1rem;
    }
    
    .economia-destaque,
    .orcamento-cta-text {
        font-size: 1rem;
    }
}

