* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #333;
    line-height: 1.6;
    padding-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Player Top Bar */
.player-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    z-index: 2000;
    padding: 15px 0;
}

.player-top-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.player-info-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff4444;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 2px 10px rgba(255, 68, 68, 0.4);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.now-playing-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 1em;
}

.now-playing-info i {
    animation: musicNote 2s ease-in-out infinite;
}

@keyframes musicNote {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.player-controls-top {
    display: flex;
    align-items: center;
    gap: 20px;
}

.play-btn-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.play-btn-top:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.play-btn-top i {
    font-size: 20px;
    color: #FF8C00;
    margin-left: 3px;
}

.play-btn-top.playing i::before {
    content: '\f04c';
    margin-left: 0;
}

.volume-wrapper-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mute-btn-top {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: white;
    transition: all 0.3s ease;
    padding: 5px;
}

.mute-btn-top:hover {
    transform: scale(1.1);
}

.volume-slider-top {
    width: 120px;
    height: 6px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.volume-slider-top::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.volume-slider-top::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: none;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 80px;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-header {
    flex-shrink: 0;
}

.logo-header img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    position: relative;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #FFD700;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s;
    padding: 10px 15px;
    border-radius: 5px;
}

.nav-list a:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

/* Slideshow */
.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.85) 0%, rgba(255, 165, 0, 0.85) 100%);
}

.hero-content {
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3em;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    font-weight: 800;
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 1.3em;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeIn 1.5s ease;
}

.social-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF8C00;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    background: #FF8C00;
    color: white;
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.social-icon.social-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 50px;
    color: #333;
    position: relative;
    font-weight: 800;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    margin: 20px auto 0;
    border-radius: 3px;
}

/* Sobre Section */
.sobre-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sobre-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.sobre-content p {
    font-size: 1.2em;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
}

/* Programação Section */
.programacao-section {
    background: white;
}

.programacao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.programa-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 3px solid transparent;
}

.programa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.3);
    border-color: #FFD700;
}

.programa-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5em;
    box-shadow: 0 5px 20px rgba(255, 165, 0, 0.4);
}

.programa-card h3 {
    font-size: 1.6em;
    margin-bottom: 12px;
    color: #333;
    font-weight: 700;
}

.horario {
    color: #FF8C00;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1em;
}

/* Banner Anuncie Aqui */
.banner-section {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 0;
    margin: 80px 0;
}

.banner-container {
    width: 100%;
    padding: 60px 20px;
}

.banner-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.banner-content i {
    font-size: 4em;
    color: white;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.banner-content h2 {
    font-size: 3em;
    color: white;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.banner-content p {
    font-size: 1.3em;
    color: white;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.btn-anunciar {
    display: inline-block;
    padding: 18px 40px;
    background: white;
    color: #FF8C00;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2em;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.btn-anunciar:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    background: #2c3e50;
    color: white;
}

/* Parceiros Section */
.parceiros-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    overflow: hidden;
}

.parceiros-carousel-wrapper {
    overflow: hidden;
    margin-top: 40px;
    position: relative;
    width: 100%;
}

.parceiros-carousel-wrapper::before,
.parceiros-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.parceiros-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(248, 249, 250, 1) 0%, transparent 100%);
}

.parceiros-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(248, 249, 250, 1) 0%, transparent 100%);
}

.parceiros-carousel {
    display: flex;
    gap: 30px;
    animation: scrollParceiros 40s linear infinite;
    width: max-content;
    padding: 10px 0;
}

.parceiros-carousel:hover {
    animation-play-state: paused;
}

@keyframes scrollParceiros {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-220px * 6 - 30px * 6));
    }
}

.parceiro-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    width: 220px;
    min-width: 220px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parceiro-item:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: #FFD700;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
}

.parceiro-logo {
    text-align: center;
    width: 100%;
}

.parceiro-logo i {
    font-size: 4em;
    color: #FFD700;
    margin-bottom: 15px;
    display: block;
}

.parceiro-logo p {
    color: #666;
    font-weight: 600;
    font-size: 1.1em;
    margin: 0;
}

/* Equipe Section */
.equipe-section {
    background: white;
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.membro-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.membro-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.3);
}

.membro-foto {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #FFD700;
    box-shadow: 0 5px 20px rgba(255, 165, 0, 0.3);
}

.membro-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.membro-card h3 {
    font-size: 1.4em;
    margin-bottom: 8px;
    font-weight: 700;
}

.cargo {
    color: #FF8C00;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1em;
}

/* Notícias Section */
.noticias-section {
    background: white;
}

.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.loading-noticias {
    grid-column: 1/-1;
    text-align: center;
    padding: 60px 20px;
    color: #FF8C00;
}

.loading-noticias i {
    font-size: 3em;
    margin-bottom: 20px;
}

.loading-noticias p {
    font-size: 1.2em;
    color: #666;
}

.noticia-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.noticia-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.3);
}

.noticia-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.noticia-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 165, 0, 0.3) 100%);
}

.noticia-content {
    padding: 30px;
}

.noticia-data {
    color: #999;
    font-size: 0.95em;
    font-weight: 600;
}

.noticia-content h3 {
    margin: 12px 0;
    color: #333;
    font-size: 1.4em;
    font-weight: 700;
    line-height: 1.4;
}

.noticia-content p {
    color: #666;
    line-height: 1.6;
}

.btn-ler-mais {
    display: inline-block;
    margin-top: 15px;
    color: #FF8C00;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
    font-size: 1.05em;
}

.btn-ler-mais:hover {
    color: #FFD700;
}

/* Galeria Section */
.galeria-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.galeria-item {
    background: white;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid transparent;
    position: relative;
}

.galeria-item:hover {
    transform: scale(1.05);
    border-color: #FFD700;
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.3);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.galeria-item:hover .galeria-overlay {
    transform: translateY(0);
}

.galeria-overlay p {
    color: white;
    font-weight: 700;
    font-size: 1.1em;
    text-align: center;
    margin: 0;
}

/* Contato Section */
.contato-section {
    background: white;
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border-left: 5px solid #FFD700;
}

.info-item i {
    font-size: 2.2em;
    color: #FF8C00;
    width: 50px;
}

.info-item h4 {
    margin-bottom: 8px;
    color: #333;
    font-weight: 700;
    font-size: 1.2em;
}

.contato-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contato-form input,
.contato-form textarea {
    padding: 18px;
    border: 3px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1em;
    transition: all 0.3s;
}

.contato-form input:focus,
.contato-form textarea:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.btn-enviar {
    padding: 18px 35px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 165, 0, 0.3);
}

.btn-enviar:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 165, 0, 0.5);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #bbb;
    line-height: 1.8;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 25px;
    color: #FFD700;
    font-weight: 700;
    font-size: 1.3em;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s;
    font-size: 1.05em;
}

.footer-links a:hover {
    color: #FFD700;
    padding-left: 10px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255,215,0,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social-icons a:hover {
    background: #FFD700;
    color: #2c3e50;
    transform: translateY(-5px);
}

.footer-social-icons a.social-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bbb;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 968px) {
    body {
        padding-top: 140px;
    }
    
    .player-top-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .player-info-left {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    
    .player-controls-top {
        width: 100%;
        justify-content: center;
    }
    
    .volume-slider-top {
        width: 150px;
    }
    
    .logo-header img {
        height: 70px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 160px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-list {
        position: absolute;
        top: 60px;
        right: 20px;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.2);
        display: none;
        min-width: 200px;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-list a {
        display: block;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .banner-content h2 {
        font-size: 2em;
    }
    
    .banner-content p {
        font-size: 1.1em;
    }
    
    .programacao-grid,
    .equipe-grid,
    .noticias-grid,
    .galeria-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .parceiro-item {
        min-width: 180px;
        padding: 30px 20px;
    }
    
    .parceiro-logo i {
        font-size: 3em;
    }
    
    .parceiros-carousel-wrapper::before,
    .parceiros-carousel-wrapper::after {
        width: 50px;
    }
    
    .contato-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-item i {
        width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 180px;
    }
    
    .player-top-bar {
        padding: 12px 0;
    }
    
    .now-playing-info {
        font-size: 0.9em;
    }
    
    .play-btn-top {
        width: 45px;
        height: 45px;
    }
    
    .play-btn-top i {
        font-size: 18px;
    }
    
    .volume-slider-top {
        width: 100px;
    }
    
    .logo-header img {
        height: 60px;
    }
    
    .hero-title {
        font-size: 1.5em;
    }
    
    .hero-subtitle {
        font-size: 1em;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .section-title {
        font-size: 1.8em;
    }
    
    .banner-content i {
        font-size: 3em;
    }
    
    .banner-content h2 {
        font-size: 1.8em;
    }
    
    .banner-content p {
        font-size: 1em;
    }
    
    .btn-anunciar {
        padding: 15px 30px;
        font-size: 1em;
    }
    
    .programa-card,
    .membro-card,
    .noticia-card,
    .parceiro-item {
        padding: 25px;
    }
    
    .programa-icon {
        width: 70px;
        height: 70px;
        font-size: 2em;
    }
    
    .membro-foto {
        width: 120px;
        height: 120px;
    }
    
    .contato-form input,
    .contato-form textarea {
        padding: 15px;
    }
}
