:root {
    --primary-color: #4169FF;
    --primary-dark: #2547D1;
    --primary-light: #6B8AFF;
    --secondary-color: #1e293b;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --bg-light: #F8FAFE;
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(180deg, #F8FAFE 0%, #E8F0FF 100%);
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

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

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 1000;
    box-shadow: 0 1px 0 0 rgba(0,0,0,0.05);
    transition: var(--transition);
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-logo img {
    height: 65px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-actions {
    flex-shrink: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-cta-nav {
    background: var(--primary-color);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-cta-nav::after {
    display: none;
}

.btn-cta-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.hero-title-highlight {
    color: var(--primary-color);
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-stats {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 500;
}

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

.badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.badge:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.badge-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.badge-text strong {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
}

.badge-text span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out;
}

.hero-image-circle {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.hero-image-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.hero-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-video {
    padding: 80px 20px;
    background: white;
}

.video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.video-player {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.video-player::-webkit-media-controls-panel {
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 14px rgba(65, 105, 255, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(65, 105, 255, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.section {
    padding: 100px 20px;
}

.section-light {
    background: var(--bg-white);
}

.section-intro {
    background: var(--bg-white);
    padding: 100px 20px;
}

.section-dark {
    background: var(--secondary-color);
    color: white;
}

.intro-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title-large {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro-text {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-dark .section-intro-text {
    color: #cbd5e1;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.why-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.why-number {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.why-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 24px;
}

.showcase-images {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

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

.showcase-img-small {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-top: 2rem;
}

.showcase-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.showcase-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.showcase-feature svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.showcase-feature span {
    color: var(--text-light);
    font-size: 1rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.content-text {
    font-size: 1.1rem;
}

.lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.content-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.features-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.content-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.content-img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.section-benefits {
    background: var(--bg-light);
}

.benefits-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.benefit-card-modern {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

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

.benefit-icon-modern {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.benefit-icon-modern svg {
    width: 32px;
    height: 32px;
}

.benefit-card-modern h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

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

.stats-section-modern {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 4rem;
    border-radius: 24px;
    margin-top: 4rem;
    box-shadow: 0 20px 40px rgba(65, 105, 255, 0.3);
}

.stats-title-modern {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: white;
    font-weight: 700;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-card-modern {
    text-align: center;
    padding: 0;
}

.stat-number-modern {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label-modern {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
}

.section-uruguay-modern {
    background: white;
}

.uruguay-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.uruguay-card-modern {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.uruguay-icon-modern {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.uruguay-icon-modern svg {
    width: 32px;
    height: 32px;
}

.uruguay-card-modern h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.uruguay-card-modern p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-box-modern {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem;
    border-radius: 24px;
    text-align: center;
    margin: 5rem 0;
    box-shadow: 0 20px 40px rgba(65, 105, 255, 0.3);
}

.cta-box-modern h3 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-box-modern p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.avant-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 5rem 0;
}

.avant-images-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.avant-img-modern:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.avant-content-modern {
    padding: 2rem 0;
}

.avant-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.avant-content-modern h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.avant-content-modern p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.team-section-modern {
    margin: 5rem 0 0;
    text-align: center;
}

.team-section-modern .section-label {
    margin-bottom: 2rem;
}

.team-card-modern {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 24px;
    text-align: left;
}

.team-photo-wrapper {
    flex-shrink: 0;
}

.team-photo-modern {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.team-info-modern h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.team-role-modern {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.team-description-modern {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

.section-contact-modern {
    background: var(--bg-light);
}

.contact-wrapper-modern {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form-modern {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
}

.form-group-modern label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group-modern input,
.form-group-modern textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(65, 105, 255, 0.1);
}

.form-group-modern input::placeholder,
.form-group-modern textarea::placeholder {
    color: #94a3b8;
}

.btn-submit-modern {
    width: 100%;
    margin-top: 1rem;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    display: block;
}

.contact-info-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-card-modern {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.contact-icon-wrapper {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.contact-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.contact-card-modern h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-card-modern a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-card-modern a:hover {
    color: var(--primary-dark);
}

.contact-card-modern p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.map-container-modern {
    margin-top: 4rem;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.footer-modern {
    background: var(--secondary-color);
    color: white;
    padding: 5rem 20px 3rem;
}

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

.footer-brand {
    max-width: 400px;
}

.footer-logo-modern {
    height: 45px;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-links-modern h4,
.footer-contact-modern h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 600;
}

.footer-links-modern ul,
.footer-contact-modern ul {
    list-style: none;
}

.footer-links-modern ul li,
.footer-contact-modern ul li {
    margin-bottom: 0.75rem;
}

.footer-links-modern a,
.footer-contact-modern a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links-modern a:hover,
.footer-contact-modern a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact-modern ul li {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-bottom-modern {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.9rem;
}

.footer-cert {
    font-size: 0.85rem;
}

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

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

@media (max-width: 968px) {
    .nav-container {
        padding: 0.75rem 20px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        align-items: flex-start;
        justify-content: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image-circle {
        width: 350px;
        height: 350px;
    }

    .hero-badges {
        flex-direction: row;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .avant-section {
        grid-template-columns: 1fr;
    }

    .team-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .team-photo {
        margin: 0 auto;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .product-showcase {
        grid-template-columns: 1fr;
    }

    .showcase-images {
        grid-template-columns: 1fr;
    }

    .showcase-img-small {
        margin-top: 0;
    }

    .benefits-grid-modern {
        grid-template-columns: 1fr;
    }

    .uruguay-grid-modern {
        grid-template-columns: 1fr;
    }

    .avant-showcase {
        grid-template-columns: 1fr;
    }

    .team-card-modern {
        flex-direction: column;
        text-align: center;
    }

    .contact-wrapper-modern {
        grid-template-columns: 1fr;
    }

    .footer-content-modern {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom-modern {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 100px 20px 60px;
    }

    .hero-logo-main img {
        height: 40px;
    }

    .hero-image-circle {
        width: 280px;
        height: 280px;
    }

    .hero-badges {
        flex-direction: column;
    }

    .badge {
        padding: 0.75rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .btn-large {
        padding: 0.875rem 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .uruguay-grid {
        grid-template-columns: 1fr;
    }

    .product-showcase {
        padding: 2rem;
    }

    .why-card {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-modern {
        padding: 2rem;
    }

    .stats-section-modern {
        padding: 2.5rem;
    }

    .cta-box-modern {
        padding: 2.5rem;
    }

    .team-card-modern {
        padding: 2rem;
    }

    .footer-modern {
        padding: 3rem 20px 2rem;
    }
}
