/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #D2551F;
    --dark-gray: #3D3D3D;
    --white: #FFFFFF;
    --black: #000000;
    --light-gray: #E5E5E5;
    --yellow-ochre: #F6A623;
    --gradient-primary: linear-gradient(135deg, var(--primary-orange) 0%, var(--yellow-ochre) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 30px 80px rgba(210, 85, 31, 0.3);
    --backdrop-blur: blur(20px);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(210, 85, 31, 0.95);
    backdrop-filter: var(--backdrop-blur);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(210, 85, 31, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(210, 85, 31, 0.3));
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(210, 85, 31, 0.5));
}

.logo-text {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.2rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-orange);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D2551F;
    transition: width 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section - Optimizado para conversión */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 40px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('fondo1.jpeg');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #2a2a2a;
    background-attachment: local;
    animation: slideBackgrounds 15s infinite;
    transform: scale(1);
    transition: transform 0.3s ease;
}

@keyframes slideBackgrounds {
    0%, 33% { background-image: url('fondo7.jpeg'); }
    34%, 66% { background-image: url('fondo9.jpeg'); }
    67%, 100% { background-image: url('fondo10.jpeg'); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, 
            rgba(210, 85, 31, 0.4) 0%, 
            rgba(61, 61, 61, 0.5) 50%,
            rgba(0, 0, 0, 0.6) 100%
        );
    pointer-events: none;
}

.construction-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: float 20s infinite linear;
    pointer-events: none;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 999;
    max-width: 1200px;
    width: 90%;
    padding: 1.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-strong);
    transform: translateY(0);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    pointer-events: auto;
}

.hero-content:hover {
    transform: translateY(-5px);
}

.hero-logo {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1001;
}

.hero-logo-img {
    height: 140px;
    width: auto;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.3));
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.15) 0%, 
            rgba(210, 85, 31, 0.08) 50%,
            rgba(0, 0, 0, 0.03) 100%
        );
    border-radius: 15px;
    padding: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-logo:hover .hero-logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 25px rgba(210, 85, 31, 0.4));
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.2) 0%, 
            rgba(210, 85, 31, 0.12) 50%,
            rgba(246, 166, 35, 0.05) 100%
        );
    border-color: rgba(210, 85, 31, 0.3);
    box-shadow: 
        0 15px 40px rgba(210, 85, 31, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}


.construction-icon {
    font-size: 2rem;
    color: #F6A623;
    margin-bottom: 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { filter: drop-shadow(0 0 20px rgba(210, 85, 31, 0.3)); }
    to { filter: drop-shadow(0 0 40px rgba(246, 166, 35, 0.5)); }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    opacity: 0.95;
}

.hero-description {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.6;
    max-width: 500px;
    text-align: center;
    font-weight: 400;
}

/* Countdown */
.countdown-container {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 0.5rem;
    margin-bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.countdown-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.countdown-title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.new-domain {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 15px;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 700;
    box-shadow: var(--shadow-strong);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.new-domain:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 40px 100px rgba(210, 85, 31, 0.4);
}

.new-domain i {
    font-size: 1.8rem;
    animation: pulse 2s infinite;
}

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

/* Redes Sociales en Hero */
.social-networks-hero {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: visible;
    text-align: center;
    width: 100%;
    z-index: 2;
    min-height: 120px;
}

.social-networks-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
    z-index: -1;
}

.social-title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.social-btn {
    display: flex !important;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--white) !important;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: visible;
    min-width: 120px;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    z-index: 4;
    opacity: 1 !important;
    visibility: visible !important;
}

.social-btn::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.6s ease;
    pointer-events: none;
}

.social-btn:hover::before {
    left: 100%;
}

.social-btn.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #42A5F5 100%) !important;
}

.social-btn.facebook:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 15px 40px rgba(24, 119, 242, 0.4) !important;
}

.social-btn.instagram {
    background: linear-gradient(135deg, #E4405F 0%, #F77737 50%, #FCAF45 100%) !important;
}

.social-btn.instagram:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 15px 40px rgba(228, 64, 95, 0.4) !important;
}

.social-btn.linkedin {
    background: linear-gradient(135deg, #0A66C2 0%, #378CE7 100%) !important;
}

.social-btn.linkedin:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 15px 40px rgba(10, 102, 194, 0.4) !important;
}

.social-btn i {
    font-size: 1.3rem;
    animation: socialPulse 2s infinite;
}

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

/* Contact Info */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFFFFF;
    font-size: 1.1rem;
}

.contact-item i {
    color: #F6A623;
}

/* Features Section - Diseño moderno */
.features {
    padding: 8rem 0;
    background: 
        linear-gradient(135deg, 
            var(--light-gray) 0%, 
            rgba(255, 255, 255, 0.95) 50%,
            var(--light-gray) 100%
        );
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(210, 85, 31, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(246, 166, 35, 0.08) 0%, transparent 50%);
    animation: floatingBackground 20s infinite linear;
}

@keyframes floatingBackground {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.features-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.features-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: var(--backdrop-blur);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(210, 85, 31, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(210, 85, 31, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white);
    font-size: 2.2rem;
    box-shadow: 0 15px 40px rgba(210, 85, 31, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 20px 60px rgba(210, 85, 31, 0.4);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 50%;
    z-index: -1;
    filter: blur(8px);
    opacity: 0.7;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.feature-description {
    color: #3D3D3D;
    line-height: 1.6;
}

/* Newsletter Section - Optimizada para conversión */
.newsletter {
    padding: 8rem 0;
    background: 
        linear-gradient(135deg, 
            var(--primary-orange) 0%, 
            var(--yellow-ochre) 50%,
            var(--primary-orange) 100%
        );
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
}

.newsletter::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></svg>') repeat;
    background-size: 100px 100px;
    animation: float 30s infinite linear;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.newsletter-description {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 3rem;
}

.newsletter-form {
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.form-input {
    flex: 1;
    padding: 1.2rem 1.8rem;
    border: 2px solid transparent;
    border-radius: 15px;
    font-size: 1.1rem;
    outline: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
}

.form-input:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 12px 35px rgba(210, 85, 31, 0.2), 0 0 0 3px rgba(210, 85, 31, 0.1);
    transform: translateY(-2px);
    background: var(--white);
}

.form-input::placeholder {
    color: rgba(61, 61, 61, 0.6);
    font-weight: 400;
}

.form-button {
    padding: 1.2rem 2.5rem;
    background: var(--gradient-dark);
    color: var(--white);
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(61, 61, 61, 0.4);
    position: relative;
    overflow: hidden;
    min-width: 180px;
    justify-content: center;
}

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

.form-button:hover {
    background: var(--black);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

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

.form-button:active {
    transform: translateY(-2px) scale(1.02);
}

.form-message {
    color: #FFFFFF;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-message.show {
    opacity: 1;
}

/* Footer */
.footer {
    background: #3D3D3D;
    color: #FFFFFF;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-description {
    color: #E5E5E5;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #D2551F;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #E5E5E5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D2551F;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: #E5E5E5;
}

.footer-contact i {
    color: #F6A623;
    margin-right: 0.5rem;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    background: #D2551F;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #000000;
    padding-top: 2rem;
    text-align: center;
    color: #E5E5E5;
}

/* Trust signals y elementos de conversión */
.trust-signals {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    opacity: 0.8;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--yellow-ochre);
    font-size: 1.1rem;
}

/* Elementos de urgencia */
.urgency-indicator {
    position: fixed;
    bottom: 120px;
    right: 30px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-strong);
    z-index: 998;
    animation: urgencyPulse 3s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.urgency-indicator:hover {
    transform: scale(1.05);
}

@keyframes urgencyPulse {
    0%, 100% { transform: scale(1); box-shadow: var(--shadow-strong); }
    50% { transform: scale(1.05); box-shadow: 0 40px 100px rgba(210, 85, 31, 0.4); }
}

/* Efectos de micro-interacciones */
.micro-interaction {
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.micro-interaction:hover {
    transform: translateY(-2px);
}

.micro-interaction:active {
    transform: translateY(0) scale(0.98);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .new-domain {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-logo-img {
        height: 120px;
        padding: 10px;
    }
    
    .urgency-indicator {
        bottom: 100px;
        right: 20px;
        font-size: 0.8rem;
        padding: 0.8rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .features-title {
        font-size: 2rem;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .countdown-container,
    .social-networks-hero {
        padding: 1.8rem 1.2rem;
        border-radius: 20px;
    }
    
    .social-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-btn {
        min-width: auto;
        padding: 0.9rem 1.2rem;
        font-size: 1rem;
    }
    
    .hero-logo-img {
        height: 100px;
        padding: 8px;
    }
    
    .urgency-indicator {
        bottom: 80px;
        right: 15px;
        font-size: 0.7rem;
        padding: 0.7rem 1rem;
    }
}

