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

:root {
    --primary-color: #0066CC;
    --primary-dark: #0052A3;
    --dark-bg: #0F1419;
    --dark-secondary: #1A2332;
    --text-dark: #0F1419;
    --text-light: #FFFFFF;
    --text-gray: #666666;
    --border-color: #E0E0E0;
    --light-bg: #F5F5F5;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--text-light);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--text-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

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

nav {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    nav {
        display: flex;
    }
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button:hover {
    background-color: var(--primary-dark);
}

.cta-button-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.cta-button-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* HERO SECTION */
.hero {
    margin-top: 80px;
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.hero-text h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 3rem;
    }
}

.hero-text h1 .highlight {
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-video {
    position: relative;
    aspect-ratio: 640 / 360;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-video video,
.hero-video iframe {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ABOUT SECTION */
.about {
    padding: 3rem 0;
    background-color: var(--text-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: -1rem;
    background-color: var(--primary-color);
    opacity: 0.1;
    border-radius: 0.5rem;
    transform: skewY(-3deg);
    z-index: 0;
}

.about-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
}

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

.section-header .accent-bar {
    width: 4px;
    height: 2rem;
    background-color: var(--primary-color);
}

.section-header .accent-text {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header .dashed-line {
    flex: 1;
    border-top: 2px dashed var(--primary-color);
}

.about-mvv {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .about-mvv {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mvv-card {
    text-align: center;
}

.mvv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border: 4px solid #0066cc;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.mvv-icon i {
    font-size: 34px;
    color: #0066cc;
}

.mvv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.mvv-card p {
    border-top: 2px dashed var(--primary-color);
    padding-top: 1rem;
    color: var(--text-gray);
}

/* SERVICES SECTION */
.services {
    padding: 3rem 0;
    background-color: var(--text-light);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background-color: var(--text-light);
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

.service-card-content {
    padding: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.premium-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* CLIENTS SECTION */
.clients {
    padding: 3rem 0;
    background-color: var(--text-light);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.client-logo {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    transition: all 0.3s;
    position: relative;
}

.client-logo:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

.client-logo .name {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--text-gray);
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.client-logo:hover .name {
    opacity: 1;
}

.google-reviews {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    padding: 2rem;
    border-radius: 0.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .google-reviews {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.google-reviews h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.google-reviews p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.google-reviews a {
    display: inline-block;
    background-color: var(--text-light);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.google-reviews a:hover {
    background-color: #f0f0f0;
}

.review-card {
    background-color: var(--text-light);
    color: var(--text-dark);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.review-author {
    font-weight: bold;
    color: var(--text-dark);
}

/* DIFFERENTIALS SECTION */
.differentials {
    padding: 3rem 0;
    background-color: #1a1a1a;
    color: var(--text-light);
}

.differentials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .differentials-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.differential-card {
    text-align: center;
}

.differential-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 3px solid #0066cc;
    border-radius: 50%;
}

.differential-icon i {
    font-size: 32px;
    color: #0066cc;
}

.differential-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.differential-card p {
    color: #ccc;
    font-size: 0.95rem;
}

/* TIMELINE SECTION */
.timeline {
    padding: 3rem 0;
    background-color: var(--light-bg);
}

.timeline-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 1024px) {
    .timeline-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.timeline-card {
    background-color: var(--text-light);
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);

    min-height: 220px;
}

.timeline-card h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.timeline-card h3 i {
    color: #0066cc;
    font-size: 1.2rem;
}

.timeline-card p {
    color: var(--text-gray);
}

/* GALLERY SECTION */
.gallery {
    padding: 3rem 0;
    background-color: var(--text-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* TESTIMONIALS SECTION */
.testimonials {
    padding: 3rem 0;
    background-color: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: var(--text-light);
    padding: 2rem;
    border-radius: 0.5rem;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: opacity 0.3s;
}

.testimonial-stars:hover {
    opacity: 0.8;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
}

.author-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* FOOTER */
footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
}

.footer-section a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #0066cc;
    border-radius: 50%;

    color: #0066cc;
    background: transparent;

    transition: all .3s ease;
}

.social-links a:hover {
    background: #0066cc;
    color: #fff;
    transform: translateY(-3px);
}

.social-links i {
    font-size: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #999;
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* MAPA */

.location-card {
    min-height: 220px;
}

.location-content {
    display: flex;
    gap: 20px;
    align-items: center;
}

.location-info {
    flex: 1;
}

.map-link {
    width: 260px;
    flex-shrink: 0;
}

.map-link iframe {
    width: 100%;
    height: 160px;
    border: 0;
    border-radius: 10px;
}
@media (max-width: 768px) {
    .location-content {
        flex-direction: column;
    }

    .map-link {
        width: 100%;
    }

    .map-link iframe {
        width: 100%;
        height: 220px;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .about-content h2 {
        font-size: 1.5rem;
    }
}