:root {
    --primary-color: #3d9f73;
    --secondary-color: #143c3c;
    --background-color: hsla(228, 71%, 4%, 1);
    --text-color: #ffffff;
    --nav-height: 70px;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
}
/* navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 35%;
    height: var(--nav-height);
    background-color: var(--primary-color);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(61, 159, 115, 0.8);
}

.navbar.scrolled {
    background-color:  var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo a {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo a:hover {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        right: -100%;
        width: 70%;
        height: calc(100vh - var(--nav-height));
        background-color: rgba(10, 15, 30, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: right 0.3s ease;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .nav-links {
        width: 100%;
    }
    
    .nav-container {
        padding: 0 15px;
    }
}





/* paginas web */

.info-paginas {
    padding: 20px;
    background-color: var(--secondary-color);
}

/* Proceso de creación */
.proceso-creacion {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2rem;
    margin-top: 2rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.proceso-creacion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('imagenes/letrero.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

.proceso-creacion h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.proceso-creacion ol {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.proceso-creacion li {
    counter-increment: step-counter;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    position: relative;
    backdrop-filter: blur(10px);
}

.proceso-creacion li::before {
    content: counter(step-counter);
    background: var(--primary-color);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 15px rgba(61, 159, 115, 0.5);
}

.proceso-creacion strong {
    color: var(--primary-color);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.proceso-creacion li:nth-child(2) {
    border-left-color: #FFD700;
}

.proceso-creacion li:nth-child(2)::before {
    background: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.proceso-creacion li:nth-child(3) {
    border-left-color: #FF6B6B;
}

.proceso-creacion li:nth-child(3)::before {
    background: #FF6B6B;
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
}
.planes {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.planes-paginas {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    background-color: var(--background-color);
    margin-top: 6rem;
    padding-top: 15rem;
}
.planes h2 {
    position: absolute;
    top: 7rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-color);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}
.subtitle-pages {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: absolute;
    top: 12rem;
    left: 50%;
    transform: translateX(-50%);
}
.plan {
    margin: 2rem;
    width: 40%;
    height: 500px;
    background: #01060e;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: flotar 4s ease-in-out infinite
}
.plan h3, .plan .price, .plan ul {
    z-index: 2;
    color: white;
    font-size: 2.5em;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}
.plan ul {
    font-size: 15px;
    margin: 10px 0;
    font-weight: bold;
}
.plan p {
    width: 90%;
    text-align: center;
    z-index: 2;
    color: white;
    font-size: 15px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}
.plan .btn{
    color: white;
    text-decoration: none;
    align-items: center;
    justify-content: center;
}
/* Rotating background with gradient and glow */
.plan::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: conic-gradient(
    from 0deg at 50% 50%,
    #010a16 0%,
    #143c3c 25%,
    #67c299 55%,
    #143c3c 85%,
    #010a16 100%
    );
    animation: rotateAnim 5s linear infinite;
    filter: blur(10px) brightness(1.2);
    z-index: 0;
}

/* Inner mask */
.plan::after {
    content: "";
    position: absolute;
    inset: 4px;
    background: #010a16;
    border-radius: 16px;
    z-index: 1;
    box-shadow: inset 0 0 20px 01060e; /* subtle inner glow */
}

/* Optional radial gradient overlay */
.plan .gradient-overlay {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, transparent 40%, #01060e 80%);
    z-index: 1;
}
.plan .price {
    font-weight: bold;
    font-size: 1.2em;
    text-decoration: none;
}
.plan ul li{
    list-style: none;
    padding: 0;
    color: white;
}

.btn-plan {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border: 2px solid rgba(61, 159, 115, 0.5);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(61, 159, 115, 0.3);
    margin-top: 1rem;
}

.btn-plan::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.5s ease;
    z-index: 1;
}

.btn-plan:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(61, 159, 115, 0.6);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.btn-plan:hover::before {
    left: 100%;
}

.btn-plan:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(61, 159, 115, 0.4);
}

/* Glowing effect */
.btn-plan::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    border-radius: 52px;
    z-index: -1;
    animation: btnGlow 2s ease-in-out infinite;
    opacity: 0.7;
}

/* marketing digital */
.marketing-digital .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
}
.marketing-digital .container img {
    max-width: 100%;
    height: auto;
    animation: flotar 7s ease-in-out infinite;
    filter: drop-shadow(0 10px 10px rgba(86, 175, 136, 0.6));
}
.marketing-digital {
    height: auto;
}
.marketing-text h2{
    color: white;
    font-size: 4rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}
.marketing-text p{
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}
.marketing-digital ul li{
    list-style: none;
    font-size: 1.2rem;
    padding: 0;
    padding-top: 1.7rem;
    color: white;
}
.marketing-digital a {
    color: var(--secondary-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    background: rgba(255, 255, 255, 1);
    margin-top: 3rem;
    display: flex;
    transition: all 0.7s ease;
    max-width: 150px;
    text-align: center;
    justify-content: center;
}
.marketing-digital a:hover {
    background: rgba(61, 159, 115, 0.7);
    color: white;
    transform: rotate(360deg);
    box-shadow: 0 0 10px rgba(141, 240, 195, 0.6);
}
/* Social Media Pricing Cards */
.marketing-digital-prices {
    padding: 2rem;
    background-color: var(--background-color);
}

.social-price-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.social-price-card {
    background: #01060e;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    width: 250px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: flotar 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.social-price-card:hover {
    transform: translateY(-10px);
}

.social-price-card::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: conic-gradient(
    from 0deg at 50% 50%,
    #010a16 0%,
    #143c3c 25%,
    #67c299 55%,
    #143c3c 85%,
    #010a16 100%
    );
    animation: rotateAnim 5s linear infinite;
    filter: blur(10px) brightness(1.2);
    z-index: 0;
}

.social-price-card::after {
    content: "";
    position: absolute;
    inset: 4px;
    background: #010a16;
    border-radius: 16px;
    z-index: 1;
    box-shadow: inset 0 0 20px #01060e;
}

.social-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    z-index: 2;
    position: relative;
}

.social-icon.instagram {
    color: #E1306C;
}

.social-icon.facebook {
    color: #4267B2;
}

.social-icon.tiktok {
    color: #5605c0;
}

.social-icon.package-icon {
    color: #FFD700;
}

.social-price-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    z-index: 2;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}

.social-price-card .price {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    z-index: 2;
    text-shadow: 0 0 10px rgba(61, 159, 115, 0.5);
}

.social-price-card p {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    z-index: 2;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}

.social-price-card.package {
    border: 2px solid #FFD700;
}

.social-price-card.package::before {
    background: conic-gradient(
    from 0deg at 50% 50%,
    #010a16 0%,
    #FFD700 25%,
    #FFA500 55%,
    #FFD700 85%,
    #010a16 100%
    );
}

.savings {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    z-index: 2;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .social-price-cards {
        gap: 1.5rem;
    }
    
    .social-price-card {
        width: 200px;
        min-height: 280px;
        padding: 1.5rem;
    }
    
    .social-icon {
        font-size: 2.5rem;
    }
    
    .social-price-card h3 {
        font-size: 1.3rem;
    }
    
    .social-price-card .price {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .social-price-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .social-price-card {
        width: 100%;
        max-width: 280px;
    }
    
    .marketing-digital-prices {
        padding: 1rem;
    }
}
/* logos creation */
    .logos-creation{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
        margin: 0 auto;
    }
    .logos-creation h2 {
        font-size: 4rem;
        /* animation: shake 10s ease-in-out infinite; */
    }
    .logos-creation .planes {
        display: flex;
        flex-direction: row;
        align-items: center;
    }


/* animaciones */

@keyframes btnGlow {
    0%, 100% {
        opacity: 0.7;
        filter: blur(5px);
    }
    50% {
        opacity: 1;
        filter: blur(8px);
    }
}


.btn-plan:hover {
    animation: none; /* Stop floating on hover for better interaction */
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .btn-plan {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .btn-plan {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Rotating animation */
@keyframes rotateAnim {
    from {
    transform: rotate(0deg);
    }
    to {
    transform: rotate(360deg);
    }
}

@keyframes flotar {
    0% { transform: translateY(0px) rotate(0deg); transition: all 0.3s ease; }
    25% { transform: translateY(-10px) rotate(2deg); transition: all 0.3s ease;}
    50% { transform: translateY(-20px) rotate(0deg); transition: all 0.3s ease;}
    75% { transform: translateY(-10px) rotate(-2deg); transition: all 0.3s ease;}
    100% { transform: translateY(0px) rotate(0deg); transition: all 0.3s ease;}
}

@keyframes shake {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    10% { transform: translateX(-10px) rotate(-5deg); }
    20% { transform: translateX(10px) rotate(5deg); }
    30% { transform: translateX(-10px) rotate(-5deg); }
    40% { transform: translateX(10px) rotate(5deg); }
    50% { transform: translateX(-5px) rotate(-2deg); }
    60% { transform: translateX(5px) rotate(2deg); }
    70% { transform: translateX(-5px) rotate(-2deg); }
    80% { transform: translateX(5px) rotate(2deg); }
    90% { transform: translateX(-2px) rotate(-1deg); }
}