
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
            -webkit-touch-callout: none;
        }

        html {
            -webkit-text-size-adjust: 100%;
            -ms-text-size-adjust: 100%;
            touch-action: manipulation;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #1a202c;
            overflow-x: hidden;
            background: 
                linear-gradient(180deg, 
                    rgba(76, 175, 130, 0.95) 0%,
                    rgba(65, 160, 120, 0.93) 10%,
                    rgba(55, 145, 110, 0.92) 20%,
                    rgba(60, 130, 115, 0.9) 30%,
                    rgba(65, 115, 125, 0.9) 40%,
                    rgba(70, 100, 135, 0.9) 50%,
                    rgba(80, 85, 145, 0.92) 60%,
                    rgba(95, 70, 150, 0.93) 70%,
                    rgba(110, 60, 155, 0.94) 80%,
                    rgba(125, 50, 160, 0.95) 90%,
                    rgba(140, 45, 165, 0.96) 100%
                ),
                repeating-linear-gradient(90deg, 
                    rgba(101, 67, 33, 0.08) 0px,
                    rgba(80, 52, 25, 0.12) 1px,
                    rgba(101, 67, 33, 0.08) 2px,
                    transparent 2px,
                    transparent 80px
                ),
                repeating-linear-gradient(0deg,
                    rgba(70, 45, 20, 0.06) 0px,
                    rgba(101, 67, 33, 0.1) 1px,
                    transparent 1px,
                    transparent 40px
                ),
                linear-gradient(180deg,
                    #8b6f47 0%,
                    #7a5e3a 25%,
                    #6b5232 50%,
                    #7a5e3a 75%,
                    #8b6f47 100%
                );
            background-attachment: fixed;
            background-size: cover, 80px 80px, 40px 40px, 400% 400%;
            min-height: 100vh;
            position: relative;
            animation: woodGrain 20s ease infinite;
        }

        @keyframes woodGrain {
            0%, 100% { background-position: center, 0 0, 0 0, 0% 0%; }
            50% { background-position: center, 40px 40px, 20px 20px, 100% 100%; }
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 15% 15%, rgba(34, 139, 34, 0.35) 0%, transparent 20%),
                radial-gradient(circle at 85% 20%, rgba(76, 175, 80, 0.3) 0%, transparent 25%),
                radial-gradient(circle at 10% 50%, rgba(46, 125, 50, 0.25) 0%, transparent 30%),
                radial-gradient(circle at 90% 60%, rgba(106, 27, 154, 0.3) 0%, transparent 28%),
                radial-gradient(circle at 25% 80%, rgba(123, 31, 162, 0.28) 0%, transparent 30%),
                radial-gradient(circle at 75% 85%, rgba(142, 36, 170, 0.32) 0%, transparent 25%),
                radial-gradient(ellipse at 50% 30%, rgba(101, 67, 33, 0.15) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 800"><defs><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" seed="0"/><feColorMatrix type="saturate" values="0"/></filter></defs><rect width="800" height="800" filter="url(%23noise)" opacity="0.08"/></svg>');
            pointer-events: none;
            z-index: 1;
            mix-blend-mode: overlay;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        body > * {
            position: relative;
            z-index: 1;
        }

        /* Decorative leaves */
        .leaf-decoration {
            position: fixed;
            font-size: 4rem;
            opacity: 0.08;
            z-index: 0;
            pointer-events: none;
            animation: sway 4s ease-in-out infinite;
        }

        @keyframes sway {
            0%, 100% { transform: rotate(-5deg); }
            50% { transform: rotate(5deg); }
        }

        .leaf-1 { top: 20%; left: 10%; animation-delay: 0s; }
        .leaf-2 { top: 40%; right: 15%; animation-delay: 1s; }
        .leaf-3 { bottom: 25%; left: 8%; animation-delay: 2s; }
        .leaf-4 { bottom: 15%; right: 12%; animation-delay: 1.5s; }

        /* Glass Effect */
        .glass {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
        }
/* === HEADER CORREGIDO === */
header {
  display: flex;
  justify-content: space-between; /* separa logo y navegación */
  align-items: center;
  padding: 1rem 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; /* centra el contenido */
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  backdrop-filter: blur(6px);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  
}

/* Logo y marca */
header .brand {
  display: flex;
  align-items: center;
  gap: .8rem;
}

header .brand img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

header .brand h1 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .6px;
  color: #fff;
}

/* Navegación */
header nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

header nav a {
  color: #e6eef8;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all .2s ease;
  padding: .4rem .8rem;
  border-radius: 6px;
}

header nav a:hover {
  background: rgba(255,255,255,0.08);
  color: #4dd0e1;
}

/* Responsive */
@media (max-width: 900px) {
  header {
    flex-direction: column;
    gap: .6rem;
    padding: 1rem;
  }

  header nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}


        header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    color: #e2f0d9; /* color sólido visible */
    /* Quitar propiedades de degradado */
    /* background: linear-gradient(...); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}


        header p {
            font-size: 1.3rem;
            position: relative;
            z-index: 1;
            font-style: italic;
            color: #e2e8f0;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
        }

        /* Navigation */
        nav {
            background: 
                linear-gradient(135deg, rgba(76, 175, 130, 0.85) 0%, rgba(65, 160, 120, 0.8) 100%),
                repeating-linear-gradient(90deg, 
                    rgba(101, 67, 33, 0.08) 0px,
                    rgba(80, 52, 25, 0.12) 1px,
                    transparent 1px,
                    transparent 50px
                ),
                linear-gradient(180deg, #7a5e3a, #6b5232);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-bottom: 2px solid rgba(101, 67, 33, 0.4);
            padding: 1rem;
            text-align: center;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 
                0 4px 15px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
        }

        nav a {
            color: #f7fafc;
            font-weight: 600;
            text-decoration: none;
            padding: 0.5rem 1.5rem;
            margin: 0 0.5rem;
            display: inline-block;
            transition: all 0.3s;
            border-radius: 10px;
            background: rgba(0, 0, 0, 0.2);
            -webkit-user-select: none;
            user-select: none;
            cursor: pointer;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        nav a:hover {
            background: rgba(76, 175, 130, 0.6);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }

        nav a:active {
            transform: translateY(0);
        }

        /* Sections */
        section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
h2 {
    color: #d9c49a; /* tono madera claro */
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    /* Eliminamos degradado */
    /* background: linear-gradient(...); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

h2::after {
    content: '';
    display: block;
    width: 250px;
    height: 4px; /* un poco más gruesa para efecto madera */
    background: linear-gradient(
        to right,
        #5c3a21, /* marrón oscuro */
        #a67c52, /* marrón medio */
        #d9c49a, /* beige/reflejo */
        #a67c52, /* marrón medio */
        #5c3a21  /* marrón oscuro */
    );
    border-radius: 2px; /* suaviza bordes */
    margin: 1rem auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.3); /* efecto de relieve y reflejo */
}


        /* Hero Section */
        

        .cta-button {
            display: inline-block;
            background: transparent;
            color: white;
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(52, 168, 83, 0.4);
            font-weight: 600;
            -webkit-user-select: none;
            user-select: none;
            cursor: pointer;
            text-align: center;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(168, 85, 247, 0.6);
        }

        .cta-button:active {
            transform: translateY(-1px);
        }

        /* Photo Section */
        .photo-section {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 3rem 0;
        }

        

        

        @keyframes shine {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .photo-placeholder {
            font-size: 5rem;
            z-index: 1;
        }

        .photo-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .service-card {
            background: 
                linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 250, 240, 0.55) 100%),
                repeating-linear-gradient(90deg,
                    rgba(139, 115, 85, 0.03) 0px,
                    rgba(160, 125, 77, 0.05) 1px,
                    transparent 1px,
                    transparent 30px
                ),
                linear-gradient(180deg, #f5e6d3, #e8d4b8);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 2px solid rgba(139, 115, 85, 0.25);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 
                0 8px 32px 0 rgba(101, 67, 33, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.6),
                inset 0 -1px 0 rgba(139, 115, 85, 0.1);
            transition: all 0.3s;
            border-top: 4px solid #8b7355;
            border-left: 1px solid rgba(255, 255, 255, 0.5);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 120px;
            height: 120px;
            background: 
                radial-gradient(circle, rgba(139, 115, 85, 0.15) 0%, transparent 70%),
                repeating-linear-gradient(45deg,
                    transparent,
                    transparent 5px,
                    rgba(160, 125, 77, 0.03) 5px,
                    rgba(160, 125, 77, 0.03) 10px
                );
            border-radius: 0 0 0 100%;
        }

        .service-card::after {
            content: '🌿';
            position: absolute;
            bottom: 10px;
            right: 10px;
            font-size: 2rem;
            opacity: 0.12;
            filter: drop-shadow(1px 1px 2px rgba(139, 115, 85, 0.3));
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 
                0 12px 40px rgba(102, 126, 234, 0.2),
                0 0 0 1px rgba(139, 115, 85, 0.3);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 250, 240, 0.4) 100%);
        }

        .service-card h3 {
            color: #8a67ad;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .service-card p {
            color: #2d3748;
            line-height: 1.8;
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .service-details {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(186, 104, 200, 0.3);
        }

        

        .service-details li::before {
            content: '✓ ';
            color: #4caf50;
            font-weight: bold;
            margin-right: 0.5rem;
            filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
        }

        /* About Section */
        .about-content {
            background: 
                linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 250, 240, 0.3) 100%);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(139, 115, 85, 0.2);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 
                0 8px 32px 0 rgba(31, 38, 135, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
            color: #2d3748;
            position: relative;
            overflow: hidden;
        }

        .about-content::before {
            content: '🍃';
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 3rem;
            opacity: 0.1;
        }

        .about-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        /* Testimonials */
        .testimonial {
            background: 
                linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 250, 240, 0.15) 100%),
                repeating-linear-gradient(90deg,
                    rgba(101, 67, 33, 0.05) 0px,
                    rgba(80, 52, 25, 0.08) 1px,
                    transparent 1px,
                    transparent 40px
                ),
                linear-gradient(180deg, #8b6f47, #6b5232);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 2px solid rgba(101, 67, 33, 0.35);
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
            box-shadow: 
                0 8px 32px 0 rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            border-left: 5px solid #6b5232;
        }

        .testimonial p {
            font-style: italic;
            margin-bottom: 1rem;
            color: #e2e8f0;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .testimonial-author {
            font-weight: bold;
            color: #ba68c8;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }



        /* Contact Form */
        form {
            max-width: 600px;
            margin: 2rem auto;
            background: 
                linear-gradient(135deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 250, 240, 0.5) 100%),
                repeating-linear-gradient(45deg,
                    transparent,
                    transparent 15px,
                    rgba(139, 115, 85, 0.02) 15px,
                    rgba(139, 115, 85, 0.02) 30px
                ),
                linear-gradient(180deg, #f5e6d3, #e8d4b8);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 2px solid rgba(139, 115, 85, 0.25);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 
                0 8px 32px 0 rgba(101, 67, 33, 0.2),
                inset 0 2px 10px rgba(255, 255, 255, 0.5);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        label {
            display: block;
            margin-bottom: 0.5rem;
            color: #5a8e7d;
            font-weight: bold;
        }

        input, textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s;
            color: #2d3748;
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: #667eea;
            background: rgba(255, 255, 255, 0.5);
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
        }

        button {
            background: transparent;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            font-weight: 600;
            -webkit-user-select: none;
            user-select: none;
            -webkit-appearance: none;
            appearance: none;
        }

        button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
        }

        button:active {
            transform: translateY(0);
        }

        /* Footer */
        footer {
            background: rgba(45, 55, 72, 0.3);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            color: #ffffff;
            text-align: center;
            padding: 2rem;
        }

        footer a {
            color: #5a8e7d;
            text-decoration: none;
            font-weight: 600;
        }

        footer a:hover {
            color: #8a67ad;
        }

        @media (max-width: 768px) {
            header h1 {
                font-size: 1.8rem;
                padding: 0 1rem;
            }

            header p {
                font-size: 1rem;
                padding: 0 1rem;
            }

            nav {
                padding: 0.5rem;
            }

            nav a {
                display: block;
                margin: 0.5rem auto;
                max-width: 300px;
                padding: 0.8rem 1.5rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .social-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .social-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            section {
                padding: 2rem 1rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            .hero {
                padding: 3rem 1rem;
            }

            .hero-content {
                padding: 2rem 1.5rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .photo-container {
                width: 250px;
                height: 250px;
            }

            .photo-placeholder {
                font-size: 4rem;
            }

            .service-card {
                padding: 1.5rem;
            }

            .service-icon {
                font-size: 2.5rem;
            }

            .about-content {
                padding: 2rem 1.5rem;
            }

            .about-content p {
                font-size: 1rem;
            }

            form {
                padding: 1.5rem;
            }

            .cta-button {
                padding: 0.9rem 2rem;
                font-size: 1rem;
                width: 100%;
                max-width: 300px;
            }

            button {
                padding: 0.9rem 1.5rem;
                font-size: 1rem;
            }

            input, textarea {
                font-size: 16px; /* Previene zoom en iOS */
            }

            .leaf-decoration {
                font-size: 3rem;
            }
        }

        /* Tablets y dispositivos medianos */
        @media (min-width: 769px) and (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            header h1 {
                font-size: 2.5rem;
            }

            section {
                padding: 3rem 2rem;
            }
        }

        /* Dispositivos pequeños */
        @media (max-width: 480px) {
            header h1 {
                font-size: 1.5rem;
            }

            header p {
                font-size: 0.9rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            .photo-container {
                width: 200px;
                height: 200px;
            }

            .photo-placeholder {
                font-size: 3rem;
            }

            .service-card h3 {
                font-size: 1.3rem;
            }

            .hero-content p {
                font-size: 0.95rem;
            }

            .about-content p {
                font-size: 0.95rem;
            }
        }

        /* Modo landscape en móviles */
        @media (max-height: 500px) and (orientation: landscape) {
            header {
                padding: 1rem 0;
            }

            header h1 {
                font-size: 1.5rem;
            }

            .hero {
                padding: 2rem 1rem;
            }

            section {
                padding: 2rem 1rem;
            }
        }

        /* Optimización táctil */
        @media (hover: none) and (pointer: coarse) {
            nav a,
            .social-btn,
            .cta-button,
            button {
                min-height: 44px; /* Tamaño mínimo recomendado para táctil */
            }

            .service-card:active {
                transform: scale(0.98);
            }

            button:active,
            .cta-button:active {
                transform: translateY(0);
            }
        }
    /* === SECCIÓN PRINCIPAL (ACTUALIZADA) === */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 100vh;
  padding: 60px 40px;
  background: 
    linear-gradient(180deg,
      rgba(76, 175, 130, 0.95) 0%,
      rgba(65, 160, 120, 0.93) 10%,
      rgba(55, 145, 110, 0.92) 20%,
      rgba(60, 130, 115, 0.9) 30%,
      rgba(65, 115, 125, 0.9) 40%,
      rgba(70, 100, 135, 0.9) 50%,
      rgba(80, 85, 145, 0.92) 60%,
      rgba(95, 70, 150, 0.93) 70%,
      rgba(110, 60, 155, 0.94) 80%,
      rgba(125, 50, 160, 0.95) 90%,
      rgba(140, 45, 165, 0.96) 100%
    ),
    repeating-linear-gradient(90deg,
      rgba(101, 67, 33, 0.08) 0px,
      rgba(80, 52, 25, 0.12) 1px,
      rgba(101, 67, 33, 0.08) 2px,
      transparent 2px,
      transparent 80px
    ),
    repeating-linear-gradient(0deg,
      rgba(70, 45, 20, 0.06) 0px,
      rgba(101, 67, 33, 0.1) 1px,
      transparent 1px,
      transparent 40px
    ),
    linear-gradient(180deg,
      #8b6f47 0%,
      #7a5e3a 25%,
      #6b5232 50%,
      #7a5e3a 75%,
      #8b6f47 100%
    );
  background-size: cover, 80px 80px, 40px 40px, 400% 400%;
  background-attachment: fixed;
  animation: woodGrain 20s ease infinite;
  position: relative;
  z-index: 1;
}



/* Contenedor principal de la sección */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 50px 20px;
}

/* Caja con fondo y efecto glass */
.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;

  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 250, 240, 0.12) 100%),
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(101, 67, 33, 0.05) 20px, rgba(101, 67, 33, 0.05) 40px),
    linear-gradient(180deg, #8b6f47, #6b5232);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2px solid rgba(101, 67, 33, 0.4);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 
    0 8px 32px 0 rgba(0, 0, 0, 0.5),
    inset 0 2px 10px rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.1);

  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Texto principal */
.hero-text {
  flex: 1;
  color: #fff;
  text-align: left;
  width: 100%;
  max-width: 600px;
}

/* Título principal */
.hero-text h1 {
  font-size: clamp(2rem, 5vw, 2.8rem); /* tamaño adaptable */
  margin-bottom: 20px;
}

/* Párrafo */
.hero-text p {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: #e0e0e0;
  line-height: 1.7;
  word-wrap: break-word;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Círculo o elemento visual */
.hero-circle {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
}

.hero-circle h2 {
  margin-top: 20px;
  font-size: 1.4rem;
  color: #fff;
}

/* Ajustes para tablet y móviles */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    text-align: center;
    margin: 0 auto 30px auto;
  }

  .hero-circle {
    margin-top: 20px;
  }
}




.photo-container {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.photo-container:hover {
  transform: scale(1.05);
}

.photo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  }





  /* Contenedor de botones */
.social-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap; /* permite que se ajusten si no caben */
  padding: 20px;
}

/* Cada botón como bloque */
.social-buttons button {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  width: 75px; /* tamaño fijo para mantener fila */
  height: 75px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Efecto al pasar el mouse */
.social-buttons button:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Íconos dentro de los botones */
.social-buttons button i {
  font-size: 22px;
  margin-bottom: 5px;
}

/* Imagen dentro del botón */
.social-buttons button img.tech-logo[src*="instagram.png"] {
  width: 60px;
  height: 60px;
  margin-bottom: 5px;
}

/* Para móviles y pantallas pequeñas */
@media (max-width: 480px) {
  .social-buttons {
    flex-direction: row; /* mantener horizontal */
    flex-wrap: nowrap;   /* evitar que se apilen */
    gap: 10px;
    justify-content: center;
    overflow-x: auto;    /* permitir scroll horizontal si no caben */
  }

  .social-buttons button {
    width: 60px;  /* tamaño proporcional para ver iconos */
    height: 60px;
    font-size: 14px;
    padding: 5px;
    flex-shrink: 0; /* evitar que se reduzcan demasiado */
  }

  .social-buttons .tech-logo {
    width: 24px;
    height: 24px;
  }
}






button {
  min-height: 44px; /* recomendado por Apple */
  touch-action: manipulation; /* mejora la respuesta al toque */
}



.service-details ul {
            list-style: none;
            padding-left: 0;
        }

        .service-details li {
            padding: 0.3rem 0;
            color: #202325;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }


       /* CSS para el h4 de la transmisión en vivo */
.live-schedule {
    color: #ffffff; /* texto blanco */
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin: 1rem auto;
    padding: 8px 16px;
    
    /* Efecto vidrio/reflejo */
    background: rgba(255, 255, 255, 0.1); /* transparente */
    backdrop-filter: blur(10px) saturate(180%); 
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1) inset, 0 4px 15px rgba(0, 0, 0, 0.2);
    
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.live-schedule:hover {
    background: rgba(255, 255, 255, 0.2); /* más brillante al pasar el cursor */
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.15) inset, 0 6px 20px rgba(0, 0, 0, 0.25);
}
