/* Custom CSS for Evoque Assessoria Landing Page */

:root {
    --primary-color: #1e40af;
    --success-color: #059669;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
    --font-family: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.header {
    padding-top: 80px;
}

.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand img {
    max-height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #333 !important;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section - Modern Design */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
}

/* Animated Background Shapes */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-color), var(--success-color));
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--success-color), var(--primary-color));
    bottom: -100px;
    left: -50px;
    animation-delay: 5s;
}

.hero-shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    top: 50%;
    left: 30%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(40px, 10px) rotate(270deg) scale(1.05);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Hero Badge with Pulse */
.hero-badge {
    position: relative;
    display: inline-block;
}

.badge-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    background: rgba(5, 150, 105, 0.2);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Modern Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.highlight-text {
    color: var(--primary-color);
    position: relative;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--success-color), #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 400;
}

.hero-subtitle strong {
    color: #1e293b;
    font-weight: 600;
}

/* Feature Pills */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(5, 150, 105, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-pill i {
    color: var(--success-color);
    font-size: 1rem;
}

.feature-pill:hover {
    transform: translateY(-2px);
    border-color: var(--success-color);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.2);
}

/* Modern Primary Button */
.btn-modern-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-modern-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    color: white;
}

.btn-modern-primary .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.2rem;
}

.btn-modern-primary .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

/* Trust Badge */
.hero-trust {
    display: inline-block;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.trust-badge i {
    font-size: 2rem;
    color: var(--success-color);
}

.trust-text strong {
    display: block;
    color: #0f172a;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.trust-text small {
    color: #64748b;
    font-size: 0.85rem;
}

/* Hero Image Wrapper */
.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
    animation: float-card 3s ease-in-out infinite;
}

.floating-card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 15%;
    right: -5%;
    animation-delay: 1.5s;
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.floating-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--success-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.floating-icon.success {
    background: linear-gradient(135deg, var(--success-color), #10b981);
}

.floating-content strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.floating-content small {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 0.25rem;
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--success-color));
    opacity: 0.15;
    z-index: -1;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.6s ease;
}

.hero-image-container:hover .hero-main-image {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    border-radius: 0 0 30px 30px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 3px solid rgba(30, 64, 175, 0.4);
    border-radius: 25px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 28px;
    }
}

.scroll-text {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.animate-slide-up-delay {
    animation: slideUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.animate-slide-up-delay-2 {
    animation: slideUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.animate-slide-up-delay-3 {
    animation: slideUp 0.8s ease-out 0.8s forwards;
    opacity: 0;
}

.animate-fade-in-right {
    animation: fadeInRight 1s ease-out 0.3s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--success-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.service-benefits {
    list-style: none;
    padding: 0;
}

.service-benefits li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Steps Section */
.step-card {
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--success-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.step-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* Apartment Cards */
.apartment-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.apartment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.apartment-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.apartment-info h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.apartment-features .badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
}

.price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    border: 3px solid var(--success-color);
}

.testimonial-author h6 {
    font-weight: 600;
    color: #333;
}

/* O PROBLEMA Section */
.bg-danger-gradient {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    position: relative;
    overflow: hidden;
}

.bg-danger-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.problem-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.problem-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.problem-icon {
    flex-shrink: 0;
}

.problem-icon i {
    font-size: 3rem;
    color: #fca5a5;
}

.problem-text h5 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Step Icons for Solution Section */
.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--success-color));
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.step-icon i {
    font-size: 2rem;
    color: white;
}

/* Service Cards Modern */
.service-card-modern {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-card-modern.featured {
    border-color: var(--success-color);
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.5rem 3rem;
    font-weight: 700;
    font-size: 0.85rem;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4);
}

.service-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon-modern i {
    font-size: 2.5rem;
    color: white;
}

.gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
}

.gradient-success {
    background: linear-gradient(135deg, var(--success-color), #10b981);
}

.gradient-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.gradient-info {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.service-card-modern h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-benefits-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-benefits-modern li {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

/* Social Proof Section */
.social-proof-image {
    position: relative;
}

.proof-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--success-color), #10b981);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.4);
    animation: pulse-scale 2s infinite;
}

@keyframes pulse-scale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.proof-badge i {
    font-size: 1.5rem;
}

.social-proof-content {
    padding: 2rem;
}

.proof-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
}

/* Differential Cards */
.differential-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.differential-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.diff-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.diff-icon i {
    font-size: 2.5rem;
    color: white;
}

.differential-card h5 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.differential-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

/* CTA Final Section */
.cta-final-section {
    position: relative;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #1e293b 100%);
    padding: 6rem 0;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="cta-grid" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-grid)"/></svg>');
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

.btn-cta-final {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 60px;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    overflow: hidden;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta-final:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.6);
    color: white;
}

.btn-icon-cta {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.btn-shine-cta {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine-cta 3s infinite;
}

@keyframes shine-cta {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.pulse-animation {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0%, 100% {
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.8), 0 0 0 15px rgba(37, 211, 102, 0.1);
    }
}

.guarantee-box {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 3rem;
    color: white;
}

.guarantee-box i {
    color: #fbbf24;
}

.guarantee-box h5 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.guarantee-box p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Differentials - Old (remove later) */
.differential-item {
    padding: 1.5rem 1rem;
}

.differential-item i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.differential-item h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

/* FAQ */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    background: white;
    border: none;
    font-weight: 600;
    color: #333;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    background: #f8f9fa;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float-btn:hover {
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

/* WhatsApp Buttons */
.whatsapp-btn {
    background: #25d366;
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128c7e;
    color: white;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #212529 !important;
}

footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer .social-links a {
    transition: color 0.3s ease;
}

footer .social-links a:hover {
    color: var(--success-color) !important;
}

footer .contact-info a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .contact-info a:hover {
    color: var(--success-color) !important;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer ul li a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: var(--success-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .step-card {
        margin-bottom: 2rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Hero Responsive */
    .floating-card {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .floating-card-1 {
        top: 5%;
        left: 0%;
    }
    
    .floating-card-2 {
        bottom: 5%;
        right: 0%;
    }
    
    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .floating-content strong {
        font-size: 1.2rem;
    }
    
    .floating-content small {
        font-size: 0.75rem;
    }
    
    .btn-modern-primary {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .feature-pill {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    /* Portfolio Responsive */
    .portfolio-image-wrapper {
        height: 350px;
    }
    
    .portfolio-card:hover .portfolio-image {
        transform: translateY(calc(-100% + 350px));
    }
    
    /* Problem Section Tablet */
    .problem-icon i {
        font-size: 2.5rem;
    }
    
    .problem-text h5 {
        font-size: 1.15rem;
    }
    
    /* Service Cards Tablet */
    .service-card-modern {
        padding: 2rem;
    }
    
    /* CTA Final Tablet */
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-subtitle {
        font-size: 1.3rem;
    }
    
    .btn-cta-final {
        padding: 1.3rem 2.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: -0.01em;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-modern-primary {
        font-size: 0.85rem;
        padding: 1rem 1.5rem;
        gap: 0.5rem;
        width: 100%;
        justify-content: center;
    }
    
    .btn-modern-primary .btn-text {
        font-size: 0.8rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    /* Hide floating cards on very small screens */
    .floating-card {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .hero-shape-1,
    .hero-shape-2 {
        width: 300px;
        height: 300px;
    }
    
    .hero-shape-3 {
        display: none;
    }
    
    .trust-badge {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }
    
    .trust-badge i {
        font-size: 1.5rem;
    }
    
    .trust-text strong {
        font-size: 0.9rem;
    }
    
    .hero-features {
        gap: 0.5rem;
    }
    
    /* Problem Section Mobile */
    .problem-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .problem-text h5 {
        font-size: 1.1rem;
    }
    
    /* Service Cards Mobile */
    .service-card-modern {
        padding: 2rem;
    }
    
    .service-card-modern h4 {
        font-size: 1.3rem;
    }
    
    /* Social Proof Mobile */
    .stat-number {
        font-size: 2.5rem;
    }
    
    .proof-stats {
        gap: 1.5rem;
    }
    
    /* CTA Final Mobile */
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.2rem;
    }
    
    .btn-cta-final {
        padding: 1.2rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .btn-text-cta {
        font-size: 0.85rem;
    }
    
    .guarantee-box {
        padding: 1.5rem 2rem;
    }
    
    .guarantee-box h5 {
        font-size: 1.2rem;
    }
    
    /* Portfolio Mobile */
    .portfolio-image-wrapper {
        height: 300px;
    }
    
    .portfolio-card:hover .portfolio-image {
        transform: translateY(calc(-100% + 300px));
    }
    
    .portfolio-info h5 {
        font-size: 1.1rem;
    }
    
    .portfolio-overlay i {
        font-size: 2rem;
    }
    
    .portfolio-overlay span {
        font-size: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--success-color);
}
