/* Variables globales - Paleta de colores Isla Sounds */
:root {
    --background-color: #f0ecf1;
    --foreground-color: #0f4ccc;
    --accent-color-1: #1182c7;
    --accent-color-2: #1070c9;
    --accent-color-3: #105eca;
    --text-color: #333;
    --text-color-light: #666;
    --white: #fff;
    --black: #000;
    --gray-light: #f4f4f4;
    --gray: #ddd;
    --gray-dark: #666;
    --transition-speed: 0.3s;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --header-gradient: linear-gradient(135deg, #0f4ccc, #1182c7);
}

/* Tema oscuro */
.dark-theme {
    --background-color: #121212;
    --foreground-color: #f0ecf1;
    --text-color: #fff;
    --text-color-light: #ccc;
    --white: #222;
    --black: #fff;
    --gray-light: #333;
    --gray: #444;
    --gray-dark: #555;
    --box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
}

/* Utilidades */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.mt-8 {
    margin-top: 2rem;
}

.oculto {
    display: none;
}

/* Botones */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--foreground-color), var(--accent-color-1));
    color: white;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Header */
header {
    background: var(--header-gradient);
    color: #fff;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: var(--box-shadow);
    transition: all 0.5s ease;
}

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

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    height: 40px;
    width: auto;
    max-width: 200px;
}

header nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav ul li {
    margin-left: 15px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 8px;
    transition: all 0.4s ease;
    font-weight: 500;
    position: relative;
    font-size: 0.95rem;
}

header nav ul li a:hover {
    color: var(--accent-color-1);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-color-1);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

header nav ul li a:hover::after {
    width: 80%;
}

header nav ul li.current a {
    color: var(--accent-color-1);
    font-weight: bold;
}

.mobile-toggle {
    display: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    header nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: var(--foreground-color);
        flex-direction: column;
        text-align: center;
        transition: left 0.3s ease;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    header nav ul.active {
        left: 0;
    }

    header nav ul li {
        margin: 15px 0;
    }

    .mobile-toggle {
        display: block;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(rgba(15, 76, 204, 0.4), rgba(16, 94, 202, 0.5));
    height: 100vh;
    min-height: 600px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    transition: all 0.8s ease;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(0px);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 76, 204, 0.3), rgba(16, 94, 202, 0.4));
    z-index: 1;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-text h1 {
    margin-bottom: 20px;
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 800;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

.text-subhead {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.9;
}

.highlight {
    color: var(--accent-color-1);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.7s;
}

@media (max-width: 768px) {
    .text-display {
        font-size: 2.5rem;
    }
    
    .text-subhead {
        font-size: 1.2rem;
    }
}

/* Secciones */
.section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
}

.text-h2 {
    color: var(--foreground-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--accent-color-1);
    margin: 0 auto;
    border-radius: 2px;
}

.bg-light {
    background-color: var(--gray-light);
}

.text-paragraph-m {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
}

/* Quiénes Somos */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.map-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed);
}

.map-image:hover {
    transform: scale(1.05);
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--foreground-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
}

.feature-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    opacity: 0;
}

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

.feature-icon {
    background-color: var(--accent-color-1);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
}

.feature-content h3 {
    margin-bottom: 10px;
    color: var(--foreground-color);
    font-size: 1.3rem;
}

.feature-content p {
    color: var(--text-color-light);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Servicios */
.services-intro {
    max-width: 800px;
    margin: 0 auto 50px;
}

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

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    opacity: 0;
}

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

.service-icon {
    background: linear-gradient(135deg, var(--foreground-color), var(--accent-color-1));
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.service-content h3 {
    margin-bottom: 15px;
    color: var(--foreground-color);
    font-size: 1.3rem;
}

.service-content p {
    color: var(--text-color-light);
    line-height: 1.5;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

/* Plataformas */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.platform-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    opacity: 0;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.platform-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: var(--white);
}

.platform-icon i {
    font-size: 2.5rem;
}

.platform-icon.spotify {
    background: linear-gradient(135deg, #1DB954, #1AA34A);
}

.platform-icon.apple {
    background: linear-gradient(135deg, #FA243C, #A3173D);
}

.platform-icon.youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

.platform-icon.amazon {
    background: linear-gradient(135deg, #00A8E1, #0077B5);
}

.platform-icon.deezer {
    background: linear-gradient(135deg, #00C7F2, #0091C7);
}

.platform-icon.tiktok {
    background: linear-gradient(135deg, #25F4EE, #FE2C55);
}

.platform-card h3 {
    font-size: 1.3rem;
    color: var(--foreground-color);
    margin-bottom: 15px;
}

.platform-card p {
    color: var(--text-color-light);
    line-height: 1.5;
    font-size: 0.95rem;
}

.platforms-note {
    text-align: center;
    margin-top: 20px;
    font-style: italic;
    color: var(--text-color-light);
}

/* Contacto */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 50px;
}

.contact-card {
    background-color: var(--white);
    color: var(--text-color);
    border-radius: var(--border-radius);
    padding: 40px;
    height: 100%;
    box-shadow: var(--box-shadow);
}

.contact-header {
    margin-bottom: 30px;
}

.contact-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--foreground-color);
}

.contact-header p {
    color: var(--text-color-light);
    font-size: 1rem;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    background-color: rgba(0, 0, 0, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--text-color);
    font-size: 1.2rem;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--foreground-color);
}

.contact-text p {
    color: var(--text-color-light);
}

.contact-text a {
    color: var(--text-color-light);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.contact-text a:hover {
    color: var(--foreground-color);
    text-decoration: underline;
}

.audience-section {
    margin-bottom: 30px;
}

.audience-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--foreground-color);
}

.audience-list {
    list-style: none;
    padding: 0;
}

.audience-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--text-color-light);
}

.audience-list li i {
    color: var(--accent-color-1);
    margin-right: 10px;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    background-color: rgba(0, 0, 0, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all var(--transition-speed);
}

.social-icon:hover {
    background-color: var(--white);
    color: var(--foreground-color);
    transform: translateY(-3px);
}

.form-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--foreground-color);
    text-align: center;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-speed);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--foreground-color);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-color-light);
    text-align: center;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-color-light);
}

.mensaje-exito {
    background-color: #27ae60;
    color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mensaje-exito i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.mensaje-exito p {
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand,
    .footer-links-container {
        grid-column: 1;
    }
    
    .footer-links-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
}

/* Footer */
.footer {
    background-color: var(--foreground-color);
    color: white;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-links-container {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    grid-column: 1;
}

.footer-logo {
    height: 180px;
    width: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color-1);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.newsletter-form .form-group {
    display: flex;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 0.9rem;
}

.btn-newsletter {
    background-color: var(--accent-color-1);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-newsletter:hover {
    background-color: var(--accent-color-2);
}

.privacy-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-color-1);
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .text-h2 {
        font-size: 2rem;
    }
}

/* Estilos para contacto directo */
.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-option {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--foreground-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: white;
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: var(--foreground-color);
}

.contact-details p {
    margin: 0 0 5px 0;
    color: var(--text-color);
}

.contact-link {
    display: inline-block;
    color: var(--foreground-color);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--accent-color-1);
    text-decoration: underline;
}

.contact-message {
    text-align: center;
    padding: 15px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.contact-message p {
    color: var(--text-color);
    font-style: italic;
}

@media (max-width: 768px) {
    .contact-option {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 0 15px 0;
    }
}
