/*
Theme Name: Customizr
Theme URI: https://presscustomizr.com/customizr
Description: Customizr is a simple and fast WordPress theme designed to help you attract and engage more visitors. Provides a perfect user experience on smartphones. Powers more than 100K active sites around the world. Hundreds of 5-stars reviews received on WordPress.org.
Version: 4.4.24
Author: nikeo
Author URI: https://presscustomizr.com/
Tags: one-column, two-columns, three-columns, left-sidebar, right-sidebar, buddypress, custom-menu, custom-colors, featured-images, full-width-template, theme-options, threaded-comments, translation-ready, sticky-post, post-formats, rtl-language-support, editor-style
Text Domain: customizr
Domain Path: /inc/lang
Copyright: (c) 2013 - 2021 Nicolas GUILLAUME (nikeo), Nice, France
License: GNU General Public License v2.0 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Requires PHP: 5.3
Tested up to: 6.0
*/


/**
Note for developers : If you write your CSS code below, it will be deleted on theme update.
If you want to make quick style test / changes, consider using the Custom CSS section in appearance > customize > advanced options > Custom CSS, it will be persisted on theme update.
To make important CSS customizations, you'll want to use a child theme and add your css code in the style.css file of it.
*/

/* Novo CSS do Site Doces com amor */
<style>
    body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      background-color: #fff0f5;
      margin: 0;
      padding: 0;
      color: #333;
    }

    .contato-container {
      max-width: 960px;
      margin: 40px auto;
      padding: 40px;
      background-color: #fff;
      border-radius: 16px;
      box-shadow: 0 0 20px rgba(250, 88, 130, 0.2);
    }

    .kit-header {
      color: #fa5882;
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 20px;
      text-align: center;
    }

    .kit-text {
      font-size: 16px;
      line-height: 1.7;
      text-align: justify;
      margin-bottom: 30px;
    }

    .kit-gallery {
      text-align: center;
      margin-bottom: 30px;
    }

    .kit-gallery img {
      width: 200px;
      border-radius: 10px;
      margin: 10px;
      box-shadow: 0 0 12px rgba(250, 88, 130, 0.2);
      transition: transform 0.3s ease;
    }

    .kit-gallery img:hover {
      transform: scale(1.05);
    }

    .kit-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: space-between;
    }

    .kit-box {
      flex: 1 1 30%;
      background-color: #fff;
      border: 2px solid #fa5882;
      border-radius: 12px;
      padding: 15px;
      min-width: 250px;
      box-shadow: 0 0 10px rgba(250, 88, 130, 0.1);
      text-align: center;
    }

    .kit-box h2 {
      color: #fa5882;
      font-size: 20px;
      margin-bottom: 10px;
    }

    .kit-box p {
      margin: 5px 0;
      font-size: 15px;
    }

    .kit-note {
      background-color: #fff8fa;
      border-left: 5px solid #fa5882;
      padding: 20px;
      margin-top: 40px;
      font-size: 15px;
    }

    .kit-note p {
      margin: 5px 0;
    }

    .kit-note ul {
      margin-top: 10px;
      padding-left: 20px;
    }

    .kit-footer {
      text-align: right;
      font-size: 14px;
      margin-top: 20px;
      color: #777;
    }

    @media (max-width: 768px) {
      .kit-grid {
        flex-direction: column;
        align-items: center;
      }

      .kit-box {
        width: 100%;
      }
    }
  </style>