:root {
    --color-white: #FFFFFF;
    --color-bg-light: #F4F4F4;
    --color-deep-gray: #1C1C1C;
    --color-dark: #121212;
    --color-gold: #D4AF37;
    --color-gold-hover: #F0C94F;
    --color-whatsapp: #25D366;
    --color-whatsapp-hover: #1EBE5C;
    --color-red: #E74C3C;
    --color-text-dark: #222222;
    --color-text-muted: #777777;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-weight: 900;
    color: var(--color-deep-gray);
    letter-spacing: -0.5px;
}

.text-gold {
    color: var(--color-gold) !important;
}

/* Animations */
@keyframes pulseGlow {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    50% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.btn-pulsing {
    animation: pulseGlow 2s infinite;
}

/* Header */
.minimal-header {
    background-color: var(--color-white);
    padding: 15px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 100;
}

.logos {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.townes-logo {
    height: 40px;
}

.seguralta-logo {
    height: 28px;
    opacity: 0.8;
}

.divider {
    width: 2px;
    height: 25px;
    background-color: #E0E0E0;
}

/* Buttons */
.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-giant {
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    padding: 22px 20px;
    font-size: clamp(1rem, 4vw, 1.4rem);
    letter-spacing: 0.5px;
    max-width: 600px;
    margin: 0 auto;
    border-bottom: 5px solid #1EBE5C;
}

.btn-giant:hover {
    background-color: #20C05A;
    transform: translateY(-2px);
}

.btn-final {
    padding: 25px 20px;
}

.btn-final span {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 5px;
    display: block;
}

/* Social Hero */
.social-hero {
    position: relative;
    background: url('suv.png') center center/cover no-repeat;
    padding: 80px 0;
    text-align: center;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

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

.hero-content {
    position: relative;
    z-index: 2;
}

.headline-giant {
    color: var(--color-white);
    font-size: clamp(2rem, 8vw, 4rem);
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 25px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.subheadline {
    color: #EAEAEA;
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-secure {
    color: #BBBBBB;
    font-size: 0.9rem;
    margin-top: 15px;
    font-weight: 500;
}

/* General Section Rules */
.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.comp-box {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    padding: 30px;
    position: relative;
}

.financiamento {
    background-color: #FAFAFA;
    border: 2px solid #EAEAEA;
}

.consorcio {
    background-color: var(--color-deep-gray);
    color: var(--color-white);
    border: 2px solid var(--color-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.consorcio h3 {
    color: var(--color-white);
}

.badge-pop {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-gold);
    color: var(--color-deep-gray);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 0.85rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.comp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.consorcio .comp-header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.comp-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.icon-x { font-size: 1.5rem; color: var(--color-red); }
.icon-v { font-size: 1.5rem; color: var(--color-whatsapp); }

.comp-list {
    list-style: none;
}

.comp-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.financiamento .comp-list li::before {
    content: "✖";
    position: absolute;
    left: 0;
    color: var(--color-red);
    font-size: 0.8rem;
    top: 4px;
}

.consorcio .comp-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--color-whatsapp);
    font-size: 0.9rem;
    top: 4px;
}

.consorcio .comp-list li strong {
    color: var(--color-gold);
}

.economy-highlight {
    background: #FFFBE6;
    border: 1px dashed var(--color-gold);
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    color: var(--color-deep-gray);
}

/* Vertical Showcase (Social Focus) */
.showcase-section {
    padding: 80px 0;
    background-color: var(--color-bg-light);
}

.vertical-scroll {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.showcase-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.card-image {
    height: 300px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.card-content {
    padding: 35px;
    text-align: center;
}

.card-content h3 {
    font-size: 2rem;
    color: var(--color-deep-gray);
    margin-bottom: 15px;
}

.card-content p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.btn-outline {
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid var(--color-deep-gray);
    color: var(--color-deep-gray);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--color-deep-gray);
    color: var(--color-white);
}

/* Credibility Section */
.credibility-section {
    background: var(--color-deep-gray);
    color: var(--color-white);
    padding: 60px 0;
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.cred-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cred-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--color-gold);
}

.cred-item h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    text-transform: uppercase;
}

/* Closing CTA */
.closing-cta {
    background: var(--color-white);
    padding: 100px 0;
    text-align: center;
}

.closing-cta h2 {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 20px;
}

.closing-cta p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Footer */
.footer-social {
    background: #111111;
    color: #AAAAAA;
    padding: 40px 0;
    text-align: center;
}

.footer-social img {
    height: 35px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.footer-social p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background-color: var(--color-whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-wa svg {
    width: 35px;
    height: 35px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .credibility-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .social-hero {
        padding: 50px 0;
    }
    
    .card-image {
        height: 220px;
    }
    
    .card-content {
        padding: 25px 20px;
    }
    
    .card-content h3 {
        font-size: 1.6rem;
    }
}
