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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    transition: background-color 0.3s ease;
    scroll-behavior: smooth;
}
body.modal-open {
    overflow: hidden;
}

/* --- ANIMACIÓN DE SCROLL --- */
.animated-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.6s ease-out;
}

.animated-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}


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

.navbar {
    background-color: #2c3e50;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.logo-img {
    height: 50px;
    margin-right: 10px;
    transition: height 0.3s ease;
}

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 60px;
    box-shadow: inset 0 0 0 200vh rgba(0, 0, 0, 0.4);
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    max-width: 950px;
    color: #fff;
    line-height: 1.8;
    margin-left: auto;
    margin-right: auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('imagenes inicio/1.jpg');
    background-size: cover;
    background-position: center;
    animation: fadeSlide 10s infinite;
    opacity: 1;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('imagenes inicio/2.jpg');
    background-size: cover;
    background-position: center;
    animation: fadeSlide 10s infinite 5s;
    opacity: 0;
    z-index: -1;
}

@keyframes fadeSlide {
    0% { opacity: 0; transform: scale(1); }
    25% { opacity: 1; }
    50% { opacity: 1; transform: scale(1.05); }
    75% { opacity: 0; }
    100% { opacity: 0; transform: scale(1); }
}

.shiny-button {
    width: fit-content;
    position: relative;
    margin: 2rem auto;
    padding: 1rem 1.5rem;
    color: rgb(207, 248, 255);
    border: 3px solid transparent;
    border-radius: 60px;
    background-color: rgb(6, 69, 73);
    background-image: linear-gradient(to bottom right, rgb(10,107,115), rgb(2, 10, 14)), linear-gradient(125deg, rgba(255,255,255,0) 45%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 53%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-size: 100%, 200%;
    background-position: 0px, -250px;
    animation: 4s border-glint linear backwards infinite;
    animation-delay: 1s;
    box-shadow: rgba(0,0,0,0.6) 8px 8px 8px;
    text-shadow: 0px 0px 4px rgba(255,255,255,0.1);
    transition: box-shadow 0.25s, text-shadow 0.25s;
    overflow: hidden;
    z-index: 2;
}

.shiny-button a {
    color: inherit;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    display: block;
    width: 100%;
    height: 100%;
}

.shiny-button:hover {
    cursor: pointer;
    background-image: linear-gradient(to bottom right, rgb(24, 77, 177), rgb(24, 77, 177)), linear-gradient(125deg, rgba(255,255,255,0) 45%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 53%);
    color: rgb(250, 250, 255);
    box-shadow: rgba(0,0,0,0.7) 5px 5px 5px;
    text-shadow: 0px 0px 3px rgba(255,255,255,0.7);
    transition: box-shadow 0.25s, text-shadow 0.25s;
}

.shiny-button::after {
    content: ' ';
    position: absolute;
    top: -50%;
    left: -120%;
    width: 200%;
    height: 200%;
    background-image: linear-gradient(125deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 52%);
    animation: 4s glint linear backwards infinite;
    animation-delay: -3s;
}

.cta-button {
    text-decoration: none;
}

/* ===== INICIO DEL CAMBIO ===== */
/* Se crea una nueva clase '.standard-cta' para los botones simples,
   eliminando el estilo genérico de '.cta-button' que causaba el conflicto. */
.standard-cta {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.standard-cta:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}
/* ===== FIN DEL CAMBIO ===== */


@keyframes glint {
    0% { left: -120%; }
    8% { left: 50%; }
    100% { left: 50%; }
}

@keyframes border-glint {
    0% { background-position: 0px, -250px; }
    25% { background-position: 0px, -200px; }
    75% { background-position: 0px, 50px; }
    100% { background-position: 0px, 50px; }
}

.services, .packages, .portfolio, .testimonials, .about, .blog, .faq, .contact {
    padding: 60px 0;
}

.services { background-color: #fff; }
.packages { background-color: #f9f9f9; }
.portfolio { background-color: #fff; }
.testimonials { background-color: #f4f4f4; }
.about { background-color: #fff; }
.blog { background-color: #f9f9f9; }
.faq { background-color: #f4f4f4; }
.contact { background-color: #fff; }

.services h2, .packages h2, .portfolio h2, .testimonials h2, .about h2, .blog h2, .faq h2, .contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.packages-subtitle, .portfolio-subtitle, .testimonials-subtitle, .faq-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    color: #7f8c8d;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background-color: #ecf0f1;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    transition: transform 0.3s ease;
    min-height: 250px;
}

.service-card .service-icon {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.service-card p {
    color: #7f8c8d;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.package-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.package-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.package-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.package-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #2c3e50;
}

.package-for {
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 2rem;
    min-height: 40px;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
    flex-grow: 1;
}

.package-features li {
    margin-bottom: 1rem;
    color: #333;
}

.package-features .fa-check-circle {
    color: #2ecc71;
    margin-right: 10px;
}

.package-features .fa-times-circle {
    color: #e74c3c;
    margin-right: 10px;
}

.package-cta {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    background-color: #34495e;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.package-cta:hover {
    background-color: #2c3e50;
}

.package-card.recommended {
    border: 2px solid #3498db;
    transform: scale(1.05);
}

.package-card.recommended:hover {
    transform: scale(1.05) translateY(-10px);
}

.recommended .package-cta {
    background-color: #3498db;
}

.recommended .package-cta:hover {
    background-color: #2980b9;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -45px;
    background-color: #e74c3c;
    color: white;
    padding: 5px 40px;
    font-size: 0.9rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #3498db;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 1rem;
}

.testimonial-text::before {
    content: '“';
    font-size: 3rem;
    color: #3498db;
    position: absolute;
    top: -10px;
    left: -10px;
    opacity: 0.5;
}

.testimonial-text::after {
    content: '”';
    font-size: 3rem;
    color: #3498db;
    position: absolute;
    bottom: -25px;
    right: -10px;
    opacity: 0.5;
}

.testimonial-author {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #2c3e50;
    margin-top: auto;
}

.testimonial-role {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.about h2, .services h2, .packages h2, .testimonials h2, .about h2, .blog h2, .faq h2, .contact h2 {
    margin-bottom: 2rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.skill-card {
    background-color: #ecf0f1;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    transition: transform 0.3s ease;
    min-height: 200px;
}

.skill-card i {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.skill-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.skill-card p {
    color: #7f8c8d;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.blog-post {
    background-color: #fff;
    border-radius: 5px;
    transition: transform 0.3s ease;
    min-height: 200px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-post-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}


.blog-post-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.blog-post-content p {
    color: #7f8c8d;
    flex-grow: 1;
}

.read-more {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    margin-top: 1rem;
    align-self: flex-start;
}

.read-more:hover {
    text-decoration: underline;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    position: relative;
    padding-right: 40px;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #3498db;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease;
}

.faq-answer p {
    padding: 0 1rem 1.5rem 1rem;
    color: #333;
    line-height: 1.7;
}
.faq-answer a {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
}
.faq-answer a:hover {
    text-decoration: underline;
}
.faq-answer ul {
    padding: 0 1rem 1.5rem 3rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 0;
}

.contact form {
    display: grid;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.contact label {
    display: block;
    font-family: 'Poppins', sans-serif;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.contact textarea {
    resize: vertical;
    min-height: 100px;
}

.contact button {
    padding: 10px;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.contact button:hover {
    background-color: #34495e;
}

#form-message {
    text-align: center;
    margin-top: 10px;
    color: #2c3e50;
}

footer, .footer-main {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer .social-links, .footer-main .social-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

footer .social-links a, .footer-main .social-links a {
    color: #3498db;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

footer .social-links a:hover, .footer-main .social-links a:hover {
    color: #2980b9;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: transform 0.3s ease;
}

.whatsapp-float i {
    line-height: 60px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* --- ESTILOS DEL NUEVO MENÚ --- */
.menu-btn {
  background-color: transparent;
  color: white;
  border: none;
  padding: 10px;
  font-size: 24px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 1100;
  transition: transform 0.3s ease, color 0.3s ease;
}

.menu-btn:hover {
    color: #3498db;
    transform: scale(1.1);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.side-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: #222;
  color: white;
  z-index: 1101;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
}

.side-menu.active {
  right: 0;
}

.side-menu .close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
}

.side-menu-links {
  list-style: none;
  margin-top: 60px;
  padding: 0;
}

.side-menu-links li {
  margin: 15px 0;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.side-menu.active .side-menu-links li {
    opacity: 1;
    transform: translateX(0);
}

.side-menu.active .side-menu-links li:nth-child(1) { transition-delay: 0.1s; }
.side-menu.active .side-menu-links li:nth-child(2) { transition-delay: 0.15s; }
.side-menu.active .side-menu-links li:nth-child(3) { transition-delay: 0.2s; }
.side-menu.active .side-menu-links li:nth-child(4) { transition-delay: 0.25s; }
.side-menu.active .side-menu-links li:nth-child(5) { transition-delay: 0.3s; }
.side-menu.active .side-menu-links li:nth-child(6) { transition-delay: 0.35s; }
.side-menu.active .side-menu-links li:nth-child(7) { transition-delay: 0.4s; }
.side-menu.active .side-menu-links li:nth-child(8) { transition-delay: 0.45s; }
.side-menu.active .side-menu-links li:nth-child(9) { transition-delay: 0.5s; }



.side-menu-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 10px 15px;
  display: block;
  border-radius: 5px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.side-menu-links a:hover {
  color: #00ffcc;
  background-color: rgba(255, 255, 255, 0.1);
}


/* --- ESTILOS DEL BLOG --- */

.blog-main-page, .article-main {
    padding-top: 80px;
}

.blog-header, .article-header {
    background-color: #2c3e50;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.blog-header h1, .article-header h1 {
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
}

.blog-list-section, .article-content-section {
    padding: 60px 0;
}

.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.article-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.article-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-card-date {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 0.5rem;
}

.article-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.article-card-excerpt {
    color: #555;
    margin-bottom: 1.5rem;
}

.article-card-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    align-self: flex-start;
}

.article-card-link:hover {
    text-decoration: underline;
}

.article-header {
    background-size: cover;
    background-position: center;
    position: relative;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.article-header .container {
    position: relative;
    z-index: 2;
}

.article-meta {
    font-size: 1rem;
    color: #ecf0f1;
    margin-top: 0.5rem;
}

.article-container {
    max-width: 800px;
}

.article-content-section h2 {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.article-content-section ul {
    margin-bottom: 1rem;
    padding-left: 20px;
}

.article-content-section blockquote {
    border-left: 4px solid #3498db;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
    font-size: 1.2rem;
}

.article-cta {
    background-color: #f4f4f4;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

.article-cta h3 {
    font-size: 1.8rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
}

/* Night mode y Responsive */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a252f;
        color: #e0e0e0;
    }

    .navbar {
        background-color: #1a252f;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    .hero {
        box-shadow: inset 0 0 0 200vh rgba(0,0,0,0.6);
    }
    .services, .blog, .contact, .about, .portfolio {
        background-color: #233240;
    }
    .service-card, .blog-post, .package-card, .skill-card, .testimonial-card, .article-card {
        background-color: #2a3946;
        color: #e0e0e0;
    }
    .testimonial-text {
        color: #b0bec5;
    }
    .testimonial-author {
        color: #e0e0e0;
    }
    .service-card .service-icon, .package-icon, .skill-card i {
        color: #3498db;
    }
    .package-card h3, .service-card h3, .skill-card h3, .blog-post h3, .faq-question, .testimonials h2, .article-card-title, .portfolio h2 {
        color: #e0e0e0;
    }
    .service-card p, .package-for, .package-features li, .skill-card p, .blog-post p, .faq-answer p, .article-card-excerpt, .article-content-section p, .portfolio-subtitle {
        color: #b0bec5;
    }
    .packages, .faq, .testimonials, .blog-list-section {
        background-color: #1a252f;
    }
    .article-content-section {
        background-color: #233240;
    }
    .article-cta {
        background-color: #1a252f;
    }
    .modal-content {
        background-color: #2a3946;
        color: #e0e0e0;
    }
    .case-study-section h4, .case-study-section p {
        color: #e0e0e0;
    }
    .close-modal {
        color: #e0e0e0;
    }
    .contact input, .contact textarea {
        background-color: #2a3946;
        color: #e0e0e0;
        border-color: #3d566e;
    }
    /* ===== CAMBIO MODO OSCURO ===== */
    .contact button, .package-cta, .standard-cta {
        background-color: #34495e;
    }
    .contact button:hover, .package-cta:hover, .standard-cta:hover {
        background-color: #46637f;
    }
    /* ===== FIN CAMBIO ===== */
    .recommended .package-cta {
        background-color: #3498db;
    }
    .recommended .package-cta:hover {
        background-color: #2980b9;
    }
    footer, .footer-main {
        background-color: #1a252f;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 90vh;
        padding-top: 100px;
        padding-bottom: 40px;
        align-items: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .service-grid,
    .tips-grid,
    .portfolio-grid,
    .blog-grid,
    .social-media-grid,
    .ideas-grid,
    .skills-grid,
    .packages-grid,
    .testimonials-grid,
    .blog-list-grid {
        grid-template-columns: 1fr;
    }
    .package-card.recommended {
        transform: scale(1);
    }
    .contact form {
        grid-template-columns: 1fr;
    }
    .logo-img {
        height: 30px;
    }
    .service-icon {
        font-size: 2rem;
    }
    
    .modal-content {
        margin: auto;
        width: 100%;
        height: 100vh;
        max-width: none;
        border-radius: 0;
    }

    .modal-image {
        max-height: 300px;
    }

    .close-modal {
        top: 10px;
        right: 15px;
        font-size: 25px;
    }

    .shiny-button {
        margin: 1rem auto;
        padding: 0.8rem 1.2rem;
    }
    .blog-post h3, .social-media-post h3, .idea-card h3 {
        font-size: 1.2rem;
    }
    .blog-post p, .social-media-post p, .idea-card ul li {
        font-size: 0.9rem;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float i {
        font-size: 25px;
        line-height: 50px;
    }
}