        @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

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

        body {
            font-family: 'inter', sans-serif;
            color: white;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .hero-section {
            background: url('<?php echo base_url(); ?>recursos/img/radio/m5.jpg') no-repeat center center/cover;
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 20px 20px;
            animation: fadeIn 1.5s ease-in-out;
        }

        .hero-overlay {
            background-color: rgba(68, 39, 160, 0.8);
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: left;
            animation: slideIn 1s ease-in-out;
        }

        .logo-img {
            max-width: 200px;
            height: auto;
            margin-bottom: 10px;
            margin-top: 20px;
            margin-left: 40px;
            filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.5));
        }

        .primera_Seccion {
            font-family: 'inter', sans-serif;
            font-weight: bold;
            margin: 8px 0;
            padding: 0;
            font-size: 88px;
            margin-left: 20px;
            color: white;
        }

        .primera_Seccion {
            font-family: 'inter', sans-serif;
            font-weight: bold;
            margin: 0; 
            padding: 0;
            font-size: 88px;
            margin-left: 20px;
            color: white;
            animation: fadeIn 1.5s ease-in-out;
        }
        

        
        #texto {
            font-style: italic;
            font-size: 46px; 
            margin: 0; 
            margin-left: 20px;
            animation: fadeIn 1.5s ease-in-out;
        }
        
        .escuchanos-text {
            margin-left: 20px;
            font-size: 16px; 
            animation: fadeIn 1.5s ease-in-out;
        }
        

        

        .icon-list {
            display: flex;
            gap: 20px;
            margin-top: 30px;
            margin-left: 20px;
            animation: bounceIn 1.8s ease-in-out;
            margin-left: 8px;
        }

        .icon-list a {
            display: inline-block;
            filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.5));
        }

        .icon-list a img {
            width: 40px;
            height: 40px;
        }


        .third-section {
            background-color: #f0f0f0;
            padding: 40px 20px;
            text-align: center;
            align-items: center;
        }

        .third-section h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }



                .third-section {
            background-color: #f0f0f0;
            padding: 40px 20px;
            text-align: center;
        }

        .third-section {
            background-color: #f0f0f0;
            padding: 40px 20px;
            text-align: center;
        }

        .third-section h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .photo-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            justify-items: center;
            margin: 0 auto;
        }

        .photo-grid div {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .photo-grid img {
            width: 100%;
            max-width: 200px;
            height: auto;
            border-radius: 10px;
            filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.5));
        }

        @media (max-width: 768px) {
            .photo-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            #texto {
                margin-left: 0;
                font-size: 22px; 
            }
        }
        
