        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #f9fafc;
            color: #1e293b;
            line-height: 1.5;
            scroll-behavior: smooth;
            transition: background-color 0.3s, color 0.3s;
        }

        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --primary-light: #60a5fa;
            --gray-bg: #f1f5f9;
            --card-bg: #ffffff;
            --text-dark: #0f172a;
            --text-muted: #475569;
            --shadow-sm: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.02);
            --shadow-hover: 0 20px 30px -10px rgba(37,99,235,0.15);
            --border-light: #e2e8f0;
            --whatsapp: #25D366;
            --whatsapp-dark: #128C7E;
        }

        /* Dark mode 
        @media (prefers-color-scheme: dark) {
            body {
                background-color: #0f172a;
                color: #e2e8f0;
            }
            :root {
                --gray-bg: #1e293b;
                --card-bg: #1e293b;
                --text-dark: #f1f5f9;
                --text-muted: #cbd5e1;
                --border-light: #334155;
                --shadow-sm: 0 10px 25px -5px rgba(0,0,0,0.3);
            }
            .navbar {
                background-color: rgba(15,23,42,0.8);
                border-bottom-color: #334155;
            }
            .service-card, .portfolio-item, .contact-grid, .testimonial-card, .feature-card {
                background: #1e293b;
                border-color: #334155;
            }
            .btn-outline {
                border-color: #334155;
                color: #e2e8f0;
            }
            .btn-outline:hover {
                border-color: var(--primary);
            }
            input, textarea {
                background: #0f172a;
                border-color: #334155;
                color: #e2e8f0;
            }
            input:focus, textarea:focus {
                border-color: var(--primary);
            }
        }*/

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* header / nav */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 2rem;
            background-color: rgba(255,255,255,0.75);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 50;
            border-bottom: 1px solid rgba(226,232,240,0.6);
            transition: background-color 0.3s;
        }

        .logo a {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 40px;
            width: auto;
            display: block;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: var(--text-dark);
            transition: color 0.2s;
            font-size: 1rem;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .btn-contato-nav {
            background: var(--primary);
            color: white !important;
            padding: 0.6rem 1.5rem;
            border-radius: 40px;
            font-weight: 600;
            transition: background 0.2s, transform 0.1s;
            box-shadow: var(--shadow-sm);
        }

        .btn-contato-nav:hover {
            background: var(--primary-dark);
            color: white;
        }

        .menu-hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary);
        }

        /* hero */
        .hero {
            padding: 5rem 0 6rem;
            background: radial-gradient(circle at 80% 30%, rgba(37,99,235,0.03) 0%, transparent 50%);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 3rem;
            align-items: center;
        }

        .hero-badge {
            background: #dbeafe;
            color: var(--primary-dark);
            font-weight: 600;
            font-size: 0.9rem;
            padding: 0.4rem 1.2rem;
            border-radius: 40px;
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        .hero h1 {
            font-size: 3.2rem;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.03em;
            color: #0b1e3a;
            margin-bottom: 1.2rem;
        }

        .hero h1 span {
            color: var(--primary);
            border-bottom: 4px solid rgba(37,99,235,0.2);
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 550px;
            margin-bottom: 2.2rem;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.9rem 2.2rem;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 8px 18px -6px var(--primary-light);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            box-shadow: 0 12px 24px -8px var(--primary);
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            border: 1.5px solid var(--border-light);
            color: var(--text-dark);
            padding: 0.9rem 2.2rem;
            border-radius: 60px;
            font-weight: 600;
            text-decoration: none;
            transition: border 0.2s, color 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-outline:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .hero-image {
            background: linear-gradient(145deg, #e6f0ff, #ffffff);
            border-radius: 40% 60% 30% 70% / 50% 40% 60% 50%;
            padding: 1.5rem;
            box-shadow: var(--shadow-sm);
            text-align: center;
            border: 2px dashed var(--primary-light);
        }

        .hero-image img {
            width: 60%;
            height: auto;
            border-radius: inherit;
            object-fit: cover;
        }

        /* seções genéricas */
        section {
            padding: 5rem 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            letter-spacing: -0.02em;
        }

        .section-title p {
            color: var(--text-muted);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 1rem auto 0;
        }

        /* NOVA SEÇÃO DE SERVIÇOS */
        .services-header {
            text-align: left;
            margin-bottom: 3rem;
        }

        .services-header h2 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .services-header h3 {
            font-size: 2rem;
            font-weight: 600;
            color: var(--text-dark);
            margin: 0.5rem 0 1rem;
        }

        .services-header p {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 800px;
            margin-bottom: 2rem;
        }

        .services-grid-new {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .service-card-new {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 32px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card-new:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .service-card-new i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .service-card-new h4 {
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
        }

        .service-card-new p {
            color: var(--text-muted);
            font-size: 1rem;
        }

        /* FILTROS */
        .filters {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 3rem;
        }

        .filter-btn {
            background: transparent;
            border: 1.5px solid var(--border-light);
            padding: 0.6rem 1.5rem;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.2s;
            color: var(--text-dark);
        }

        .filter-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .filter-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
        }

        /* portfolio */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .portfolio-item {
            background: var(--card-bg);
            border-radius: 32px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: 0.25s ease;
            border: 1px solid var(--border-light);
        }

        .portfolio-item:hover {
            box-shadow: var(--shadow-hover);
            transform: scale(1.02) translateY(-5px);
        }

        .portfolio-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-top-left-radius: 32px;
            border-top-right-radius: 32px;
            display: block;
        }

        .portfolio-info {
            padding: 1.5rem;
        }

        .portfolio-info h4 {
            font-size: 1.3rem;
            margin-bottom: 0.4rem;
        }

        .portfolio-info p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 1.2rem;
        }

        .tag {
            background: #eef2ff;
            color: var(--primary-dark);
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
        }

        /* NOSSOS NÚMEROS */
        #nossos-numeros {
            background: var(--gray-bg);
        }

        .numbers-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin: 3rem 0 2rem;
        }

        .number-item {
            text-align: center;
            padding: 2rem 1rem;
            background: var(--card-bg);
            border-radius: 32px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .number-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .number-value {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
            margin-bottom: 0.5rem;
        }

        .number-label {
            font-size: 1rem;
            color: var(--text-muted);
            max-width: 180px;
            margin: 0 auto;
        }

        .numbers-cta {
            text-align: center;
            margin-top: 3rem;
        }

        .btn-large {
            padding: 1.2rem 3rem;
            font-size: 1.3rem;
        }

        /* GO TO NEXT SECTION - REFINADO COM CARDS E ÍCONES */
        .goto-next {
            background: var(--card-bg);
            padding: 5rem 0;
        }

        .goto-next .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .goto-next h2 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: -0.02em;
            margin-bottom: 0.5rem;
        }

        .goto-next h3 {
            font-size: 2rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 2rem;
        }

        .goto-next .btn-agenda {
            background: var(--primary);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1.2rem;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 3rem;
            box-shadow: var(--shadow-sm);
            transition: background 0.2s, transform 0.2s;
        }

        .goto-next .btn-agenda:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            width: 100%;
            margin-top: 2rem;
        }

        .feature-card {
            background: var(--card-bg);
            border-radius: 24px;
            padding: 2rem 1.5rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: left;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .feature-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .feature-card h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .feature-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* Responsividade para números e features */
        @media (max-width: 900px) {
            .numbers-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .goto-next h2 {
                font-size: 2.5rem;
            }
            .goto-next h3 {
                font-size: 1.8rem;
            }
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

        @media (max-width: 600px) {
            .numbers-grid {
                grid-template-columns: 1fr;
            }
            .number-value {
                font-size: 3rem;
            }
            .goto-next h2 {
                font-size: 2rem;
            }
            .goto-next h3 {
                font-size: 1.5rem;
            }
            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        /* depoimentos */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .testimonial-card {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 32px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: transform 0.3s;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .stars {
            color: #fbbf24;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .testimonial-card p {
            color: var(--text-muted);
            font-style: italic;
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }

        .client {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .client-photo {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #cbd5e1;
            background-size: cover;
            background-position: center;
        }

        .client-info strong {
            display: block;
            color: var(--text-dark);
        }

        .client-info span {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* contato - versão WhatsApp */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            background: var(--card-bg);
            padding: 3rem;
            border-radius: 48px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .contact-detail {
            margin: 2rem 0;
        }

        .contact-detail p {
            margin: 0.8rem 0;
            color: var(--text-muted);
        }

        .contact-detail i {
            width: 2rem;
            color: var(--primary);
        }

        .btn-whatsapp {
            background: var(--whatsapp);
            color: white;
            border: none;
            padding: 1.2rem 2rem;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1.2rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            text-decoration: none;
            width: 100%;
            margin-top: 1rem;
        }

        .btn-whatsapp:hover {
            background: var(--whatsapp-dark);
            transform: scale(1.02);
        }

        .contact-image {
            background: linear-gradient(145deg, #25D36610, #25D36620);
            border-radius: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            overflow: hidden;
        }

        .contact-image img {
            width: 100%;
            height: auto;
            border-radius: 40px;
            object-fit: cover;
        }

        /* Ícone flutuante do WhatsApp */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            line-height: 60px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 100;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            background: #128C7E;
            transform: scale(1.1);
            animation: none;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
            70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        /* MODAL */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background: var(--card-bg);
            max-width: 500px;
            width: 90%;
            border-radius: 32px;
            padding: 2.5rem;
            box-shadow: var(--shadow-hover);
            position: relative;
            text-align: center;
            border: 2px solid var(--primary-light);
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text-muted);
            transition: color 0.2s;
        }

        .modal-close:hover {
            color: var(--primary);
        }

        .modal-content h2 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .modal-content p {
            color: var(--text-dark);
            margin-bottom: 1rem;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .modal-content .btn-modal {
            background: var(--whatsapp);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1.2rem;
            text-decoration: none;
            display: inline-block;
            margin-top: 1.5rem;
            transition: background 0.2s, transform 0.2s;
        }

        .modal-content .btn-modal:hover {
            background: var(--whatsapp-dark);
            transform: scale(1.05);
        }

        footer {
            background: #0f182a;
            color: #cbd5e1;
            padding: 3rem 0 1.5rem;
            border-top: 1px solid #1e2a44;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .footer-logo img {
            height: 40px;
            width: auto;
            margin-bottom: 1rem;
        }

        .footer-links p {
            font-weight: 600;
            margin-bottom: 1rem;
            color: white;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.6rem;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: white;
        }

        .social-icons {
            display: flex;
            gap: 1.2rem;
            margin-top: 1rem;
        }

        .social-icons a {
            color: #94a3b8;
            font-size: 1.5rem;
            transition: color 0.2s;
        }

        .social-icons a:hover {
            color: var(--primary-light);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #1e2a44;
            color: #64748b;
        }

        /* responsividade refinada */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 900px) {
            .nav-links {
                display: none;
                flex-direction: column;
                background: var(--card-bg);
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                padding: 2rem;
                box-shadow: 0 20px 30px -10px rgba(0,0,0,0.1);
                border-bottom: 2px solid var(--border-light);
                gap: 1.5rem;
                z-index: 100;
            }
            .nav-links.active {
                display: flex;
            }
            .menu-hamburger {
                display: block;
            }
            .hero-grid, .contact-grid, .footer-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero-image {
                order: -1;
            }
            .contact-image {
                display: none;
            }
            .contact-grid {
                padding: 2rem;
            }
            .services-header h2 {
                font-size: 2.5rem;
            }
            .services-header h3 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 600px) {
            .container {
                padding: 0 1.5rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .section-title h2 {
                font-size: 2rem;
            }
            .btn-primary, .btn-outline {
                padding: 0.8rem 1.5rem;
                font-size: 0.95rem;
            }
            .logo img {
                height: 30px;
            }
            .services-header h2 {
                font-size: 2rem;
            }
            .services-header h3 {
                font-size: 1.5rem;
            }
            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 25px;
                line-height: 50px;
                bottom: 20px;
                right: 20px;
            }
        }

        @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
            .hero-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
/* Configuração dinâmica de contatos / YouTube */
.contact-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.contact-actions .btn-whatsapp {
    margin-top: 0;
    font-size: 1rem;
    padding: 1rem 1.2rem;
}

.btn-youtube {
    grid-column: 1 / -1;
    background: #ff0000;
    color: #fff;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}

.btn-youtube:hover {
    transform: scale(1.02);
}

a.config-missing {
    opacity: 0.48;
    cursor: not-allowed !important;
    filter: grayscale(0.35);
}

a.config-missing:hover {
    transform: none !important;
}

.contact-float {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 110;
}

.contact-float .whatsapp-float {
    position: static;
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.contact-float-menu {
    position: absolute;
    right: 0;
    bottom: 76px;
    width: 220px;
    padding: 0.65rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--border-light);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(0.98);
    transform-origin: bottom right;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.contact-float.open .contact-float-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.contact-float-option {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.8rem 0.9rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    color: var(--text-dark);
    transition: background 0.18s ease, transform 0.18s ease;
}

.contact-float-option:hover {
    background: var(--gray-bg);
    transform: translateX(-2px);
}

.contact-float-option.whatsapp-option i {
    color: var(--whatsapp);
    font-size: 1.25rem;
}

.contact-float-option.youtube-option i {
    color: #ff0000;
    font-size: 1.2rem;
}

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

    .btn-youtube {
        grid-column: auto;
    }

    .contact-float {
        right: 20px;
        bottom: 20px;
    }

    .contact-float-menu {
        bottom: 64px;
        width: min(220px, calc(100vw - 40px));
    }
}
